我正在尝试使用下面的代码在我的 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);
但是用户只能通过使用退格键(删除)键来擦除文本而不是图像。请为此提供解决方案。或者是否有任何其他方式/控件可以让用户在需要时输入文本以及插入图像并删除它们。