Windows Phone 8 Image Binding

本文关键字:Binding Image Phone Windows | 更新日期: 2023-09-27 18:32:47

我想将图像 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,它们工作正常。我只在此代码中收到错误。我不明白错误的原因。列表框项源是一个泛型列表。

ImageList.ItemsSource = spotlightInfo.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的图片网址

如能就可能存在问题的地方提供一些帮助,将不胜感激。

Windows Phone 8 Image Binding

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