我有列表框,我需要在其中显示来自互联网的图像
我有一个这样的数据源:
DataTemplate
我使用这样的方法在列表框中绑定“图像” :
<DataTemplate x:Key="DataTemplate1">
<Grid VerticalAlignment="Stretch" HorizontalAlignment="Stretch">
<Image Source="{Binding image}"></Image>
<TextBlock Text="{Binding imagedec}"></TextBlock>
</Grid>
</DataTemplate>
我可以看到图像,但它来晚了,在这种情况下显示图像的最佳方式是什么?