时间:2019-03-17 标签:c#wpfrichtextboxselection
我有一个 RichTextBox,其中包含例如这段文本:
嗨,我的名字是 {name}!
当我将光标放在括号之间时,我希望 Richtextbox 选择括号之间的整个单词以及括号。
所以当我这样做时:('|'是光标)
嗨,我的名字是{n|ame}!
我想选择“{name}”,
我该怎么做?
I have a RichTextBox with for example this piece of text:
Hi, my name is {name}!
When I put my cursor between the brackets I want my richtextbox to select the entire word between brackets and also the brackets.
so when I do this: ('|'is the cursor)
Hi, my name is {n|ame}!
I want to select '{name}'
How can I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我这样做是为了扩展 WPF RichTextBox 中的选择。我是 WPF 新手,所以我不知道这是否是最好的方法。
I have made this to extend the selection in a WPF RichTextBox. I'm new to WPF so I don't know if it's the best way to do it.
我写了一些你可以使用的东西(下面的代码仅适用于单行 RTB):
I write something you can work on (the code below only works with a single line RTB):