C# RichTextBox 文本块选择
是否有人扩展了 .NET RichBextBox 控件以能够通过“块选择”来选择文本? 如果是这样,愿意分享您的代码吗?
Has anyone extended the .NET RichBextBox control to be able to select text by "block selection"? If so, care to share your code?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
据我所知,唯一的方法是使用 API 中的 SendMessage,使用 EM_CHARFROMPOS。
您必须进行一些矩形边界搜索/跟踪和实验才能找到有效的解决方案,但这只是基础知识。
As far as I know, the only way to do that is with the SendMessage from the API, using EM_CHARFROMPOS.
You would have to do some rectangle border search/tracking and experiment to find the efficient solution, but that would be the basics.