I use grid view to display images (I just have url to image).
Something like:
<DataTemplate>
<Grid>
<Image Grid.Row="1" Source="{Binding Path=image_url}"/>
</Grid>
</DataTemplate>
Currently, they all show up at same time, no matter image is loaded or not.
My question is can I do something to let gridviewitem show only when the image is fully loaded?
Thanks,
Helin