0
例には、常にこのような何かを示しています。FileOpenPicker開口
private async void openBtn_Click(object sender, RoutedEventArgs e)
{
FileOpenPicker openPicker = new FileOpenPicker();
StorageFile file = await openPicker.PickSingleFileAsync();
}
をしかし、ユーザーがクリックした場合に二回、それは2つのピッカーウィンドウを開きます。それは本当に正しい方法ですか?
代わりに 'PickSingleFileAndContinue()'を使用しますか? – Kostya
またはこの1 https://www.codeproject.com/Tips/1179716/Extending-Content-Message-Dialog-Class-in-UWP-to-Aをチェック – Kostya