2

我想将图像 URL 绑定到我的 Windows Phone 8 应用程序中的图像控件,代码如下:

<ListBox x:Name="ImageList" SelectionChanged="spotlightListBox_SelectionChanged"  >
   <ListBox.ItemTemplate>
      <DataTemplate>
         <Grid Width="420">
            <StackPanel Height="325" VerticalAlignment="Top">
               <Image x:Name="eventImage" Source="{Binding ImageUrl}" VerticalAlignment="Top"/>
            </StackPanel> 
         </Grid>  
      </DataTemplate>
   </ListBox.ItemTemplate>
</ListBox>

通过这种方式,我得到“ag_e_network_error”。ImageUrl 工作正常,我在不同页面中使用相同的 URL,它们工作正常。我只在这段代码中得到错误。我不明白错误的原因。ListBox Itemsource 是一个通用列表。

ImageList.ItemsSource = spotlightInfo.Spots;

Spots 对象是一个通用列表。像这样。

public string Name { get; set; }
public string Type { get; set; }
public string Text { get; set; }
public string ImageUrl { get; set; }

图片网址如www.someurl.com/someImage.jpg

对于可能存在问题的地方提供一些帮助,我们将不胜感激。

4

1 回答 1

4

尝试将ImageUrl的类型从字符串更改为 Uri

于 2013-09-26T11:58:30.613 回答