在 C# 中选择单词部分
在收集一些 NLP 训练数据时,我发现在 RichTextBox 中不可能选择 2 个相邻单词的部分内容。
例如:您无法使用鼠标从 RichTextBox 中的“Select Me”中选择“lect Me”..!!
但是可以使用 SHIFT 键来完成
是否有一个属性可以选择相邻单词的部分而不是整个单词?这将使人类注释者变得容易......
谢谢
While collecting some training data for NLP, I discovered that it is impossible to select parts of 2 adjacent words in a RichTextBox.
For example: you can not select "lect Me" from "Select Me" in a RichTextBox using mouse..!!
However it can be done using SHIFT key
Is there a property to be able to select parts of adjacent words not the whole words? That would make it easy for a human annotator...
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
RichTextBox 有一个属性 AutoWordSelection。当你将其设置为 false 时,你就会得到你需要的东西。
最有可能的是,您需要以编程方式执行此操作 - 由于某种原因,在“属性”选项卡中将其更改为 false 没有帮助。
RichTextBox has a property AutoWordSelection. When you set it to false, you get what you need.
Most probably, you will need to do it programmatically - for some reason changing it to false in Properties Tab did not help.