我正在尝试使用
以下代码将richtextbox内容更改为文本,如。
Dim tr As New TextRange(rtb.Document.ContentStart, rtb.Document.ContentEnd)
documentText = tr
Dim titleMatch As Match = Regex.Match(documentText, expression, options)
但是它没有定义Type'TextRange'。 请给我任何建议。
答案 0 :(得分:4)
您需要导入System.Windows.Documents
。
您可以通过查看documentation for TextRange:
来查看此内容命名空间:System.Windows.Documents
程序集:PresentationFramework(在PresentationFramework.dll中)