使用远程图像填充ListBox

时间:2013-01-21 12:28:38

标签: c# image xaml listbox

我在Windows 8计算机上使用VS Studio Express 2012并使用试用版和免费帐户开发Win8 Store App。

我在我的应用程序中使用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。访问该网站是可以的,而不是关闭。一个工作示例是here以供参考。

任何帮助都将受到高度赞赏。

更新:现在结果正常。误报。遗憾!

0 个答案:

没有答案