Windows Phone 8.1 (RT)FileOpenPicker
を使用して、カメラの使用を提案せずに画像ライブラリから画像を選択する方法はありますか?
FileOpenPicker openPicker = new FileOpenPicker();
openPicker.ViewMode = PickerViewMode.Thumbnail;
openPicker.SuggestedStartLocation = PickerLocationId.PicturesLibrary;
openPicker.FileTypeFilter.Add(".jpg");
openPicker.PickSingleFileAndContinue();
上記のコードは、ライブラリからの画像と下部のカメラ ボタンを含む画像ピッカー ビューを開きます。そのカメラボタンは取り外せますか?