有没有办法使用 Windows Phone 8.1 (RT)FileOpenPicker
从图片库中选择图像而不提供使用相机?
FileOpenPicker openPicker = new FileOpenPicker();
openPicker.ViewMode = PickerViewMode.Thumbnail;
openPicker.SuggestedStartLocation = PickerLocationId.PicturesLibrary;
openPicker.FileTypeFilter.Add(".jpg");
openPicker.PickSingleFileAndContinue();
上面的代码打开了一个图像选择器视图,其中包含库中的图像和底部的相机按钮。那个拍照键能去掉吗?