-1

ボタンを使用して Pictures フォルダーから画像を選択しています。選択した画像をアプリのローカル ストレージに保存して、GridView でバインディングを使用してその画像を表示できるようにする必要があります。これは可能ですか?どうすればできますか?ありがとう

4

1 に答える 1

1

次のようにします。

FileOpenPicker openPicker = new FileOpenPicker();
openPicker.ViewMode = PickerViewMode.Thumbnail;
openPicker.SuggestedStartLocation = PickerLocationId.PicturesLibrary;
openPicker.FileTypeFilter.Add(".jpg");
openPicker.FileTypeFilter.Add(".jpeg");
openPicker.FileTypeFilter.Add(".png");

StorageFile file = await openPicker.PickSingleFileAsync();
if (file != null)
{
    await file.CopyAsync(Windows.Storage.ApplicationData.Current.LocalFolder);
}
于 2012-09-24T17:38:53.290 に答える