在WPF
应用中,我们可以按以下方式获取TextRange
(或参见this post或示例here):
var textRange = new TextRange(richTextBox.Document.ContentStart, richTextBox.Document.ContentEnd);
问题:如何在
UWP
应用程序中为RichEditBox实现相同的目的? 最佳答案
尝试这个:
string text;
richEditBox.Document.GetText(Windows.UI.Text.TextGetOptions.None, out text);
Windows.UI.Text.ITextRange range = richEditBox.Document.GetRange(0, text.Length - 1);