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のようなものです。そのサイトへのアクセスは問題なく、ダウンしていません。参考までに実例を載せておきます。
どんな助けでも大歓迎です。
更新:現在は機能していることが判明しました。誤警報。ごめん!