次を使用してファイルを選択しようとしています:
private async void Button_Click_1(object sender, RoutedEventArgs e)
{
try
{
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)
{
// Application now has read/write access to the picked file
txt.Text = "Picked file: " + file.Name;
}
else
{
txt.Text = "Operation cancelled.";
}
}
catch (Exception exception)
{
txt.Text = exception.Message;
}
}
...しかし、例外がスローされます: `指定されたメソッドはサポートされていません。";
Windows Phone 8 ドキュメントからコードをコピーして貼り付けました。彼らのサンプルはどれも機能しません。ドキュメント機能/コントラクトなどが欠けているのではないかと思いましたが、電話アプリのVSには存在しません。
なぜこれがうまくいかないのですか?
私はそれを試しの最初の行まで追跡しました:
FileOpenPicker openPicker = new FileOpenPicker(); // this is the line the exception is thrown on.