如何在windowsphone中将json中的图像绑定到xaml中



我是windows手机开发的新手。我正在开发一个应用程序,该应用程序从webservice中获取json,并使用json.net对其进行解析,以在windowsphone中显示数据。这是示例json。

[
{
    "id": "001",
    "title": "title1",
    "content": "sample content",
    "category_id": "3",
    "image": "defaultimg.jpg"
},
{
    "id": "021",
    "title": "title2",
    "content": "sample content",
    "category_id": "1",
    "image": "defaultimg2.jpg"
},
{
    "id": "011",
    "title": "title3",
    "content": "sample content",
    "category_id": "3",
    "image": "defaultimg22.jpg"
},
]

有可能用那种格式绑定图像吗?或者应该是url格式?

不要传递图像路径,而是传递一个base64编码的图像字符串,然后在视图中使用它。

相关内容

  • 没有找到相关文章

最新更新