Windows 10中的触摸屏友好文件选择器

时间:2015-07-31 14:03:45

标签: c# xaml windows-8 windows-10 fileopenpicker

我正在寻找适用于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();

产生了一个漂亮的界面(example),但在Windows 10中,相同的代码显示与OpenFileDialog相同的界面(example),这在触摸屏上非常难以使用。有谁知道如何在Windows 10中获得Windows 8 / 8.1样式的FileOpenPicker,或者知道其他选择吗?

1 个答案:

答案 0 :(得分:1)

在我的应用程序中,我要求用户选择文件夹(标准文件夹选择器不太友好),但在此之后我已经显示了我自己的自定义控件,其中包含文件夹中的显示文件,让他们以触摸友好的方式选择