没有相机的 FileOpenPicker

FileOpenPicker without Camera

有没有一种方法可以使用 Windows Phone 8.1 (RT) FileOpenPicker 到 select 图片库中的图像而不提供使用相机?

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

上面的代码打开一个图像选择器视图,其中包含库中的图像和底部的相机按钮。那个相机按钮可以去掉吗?

为了在文件选择器中提供一致的用户体验,当您通过指定 .jpg 添加基于图像的文件过滤器时,添加相机按钮是为了方便。

无法删除。