我在我的 Windows 8 机器上使用 VS Studio Express 2012 并使用试用和免费帐户开发 Win8 Store 应用程序。
我在我的应用程序中使用 ListBox 并尝试用集合类中的一些其他内容填充图像。代码片段如下所示:
MainPage.xaml
<ListBox x:Name="OwnerDraw" Width="600" HorizontalAlignment="Left" ItemsSource="{Binding Statuses}">
<ListBox.ItemTemplate>
<DataTemplate>
<StackPanel Orientation="Horizontal">
<Image Width="300" Height="400" Source="{Binding Path=photo.imageUrl}" Stretch="Uniform"/>
<TextBlock FontSize="36" Foreground="Navy" Text="{Binding Path=id}"/>
<TextBlock FontSize="24" Foreground="Red" Text="{Binding Path=created_at}" Margin="50,0,0,0"/>
</StackPanel>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
id/created_at 字段显示正常。但是看不到图。
photo.imageUrl 类似于:http://www.rsywx.net/books/cover/01732.png。对该站点的访问是正常的,并且没有关闭。这里有一个工作示例供参考。
任何帮助将不胜感激。
更新:事实证明它现在正在工作。虚惊。对不起!