ApplicationData.Current.LocalFolder
フォルダに画像のリストがあります。Image コントロールに最初の画像を表示したい。
私のviewmodelクラスには、次のコードがあります:-
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>
しかし、画像を表示するために渡す正しい文字列がわかりません。助けていただければ幸いです。
タ
ロス