我有
<GridView.ItemTemplate>
<DataTemplate>
---------template controls
<Image
x:Name="Name"
Source="{Binding Photo.FileName}"
</Image>
</GridView.ItemTemplate>
</DataTemplate>
问题是我的档案在ApplicationData.Current.LocalFolder
当我需要用整个文件路径替换此Image的源代码(ApplicationData.Current.LocalFolder + Photo.FileName)时。
我试图处理Image的Loaded事件,但它没有用。 我该如何解决这个问题。