我正在寻找适用于 Windows 10 的触摸屏友好文件选择器。在 Windows 8 和 8.1 中,我使用了 FileOpenPicker:
FileOpenPicker fileOpenPicker = new FileOpenPicker();
fileOpenPicker.FileTypeFilter.Add(".wma");
fileOpenPicker.FileTypeFilter.Add(".mp3");
fileOpenPicker.SuggestedStartLocation = PickerLocationId.VideosLibrary;
fileOpenPicker.ViewMode = PickerViewMode.List;
IReadOnlyList<StorageFile> files = await fileOpenPicker.PickMultipleFilesAsync();
这产生了一个很好的界面(示例),但在 Windows 10 中,相同的代码显示与 OpenFileDialog 相同的界面(示例),这很难在触摸屏上使用。有谁知道如何在 Windows 10 中获得 Windows 8/8.1 风格的 FileOpenPicker,或者知道替代方法?