C#在绑定Windows Universal之前组合来自Json Webrequest的String

时间:2015-08-09 15:48:16

标签: c# json binding listbox

我有一个包含数据模板的列表框,其中包含一个图像。图像的源应该是静态URL(等等http://www.google.de/)的组合,以及从Json webrequest获得的String值,该值位于jsonclass的根对象的列表中。 所以我在Jsonclass中有String值:

  public string icon_url { get; set; }

在我可以绑定到此之前,我需要为每个项目组合静态uri和单独的icon_url。我该怎么做呢?不,我不能在xaml中使用多个绑定,它在Windows通用中不受支持。

1 个答案:

答案 0 :(得分:0)

在将ItemsSource设置为列表框之前,您可以执行以下操作

for(int i = 0; i < myList.Count; i++)
   myList[i].icon_url = "my_base_url" + myList[i].icon_url;

之后只需设置ItemSource