我正在尝试使用下面的代码在我的windowsphone应用程序的richeditbox控件中插入内嵌图像
FileOpenPicker openPicker = new FileOpenPicker();
openPicker.ViewMode = PickerViewMode.Thumbnail;
openPicker.SuggestedStartLocation =PickerLocationId.PicturesLibrary;
openPicker.FileTypeFilter.Add(".jpg");
openPicker.FileTypeFilter.Add(".jpeg");
openPicker.FileTypeFilter.Add(".png");
openPicker.PickSingleFileAndContinue();
var imagefile=args.Files[0];
IRandomAccessStream stream= await imagefile.OpenAsync(Windows.Storage.FileAccessMode.Read);
Notebox.Document.Selection.InsertImage(215,152,25,Windows.UI.Text.VerticalCharacterAlignment.Baseline,imagefile.DisplayName,stream);
但是用户只能使用退格(删除)键删除文本而不是图像。请为我提供解决方案。或者是否有任何其他方式/控制,我可以提供用户输入文本以及插入图像并在他需要时删除它们。