我的ApplicationData.Current.LocalFolder
文件夹中有一个图像列表。我想在 Image 控件中显示第一张图像。
在我的视图模型类中,我有以下代码:-
StorageFolder folder = ApplicationData.Current.LocalFolder;
IReadOnlyList<StorageFile> files = await folder.GetFilesAsync();
if (files.Count > 0)
{
vm.SelectedImage = files[0].Name;
}
我的 Xaml 有以下代码:
<Image>
<Image.Source>
<BitmapImage UriSource="{Binding SelectedImage, Mode=OneWay}" CreateOptions="BackgroundCreation"/>
</Image.Source>
</Image>
但我无法找出正确的字符串来传递图像以显示 - 任何帮助将不胜感激!
塔
罗斯