如何在 AvalonEdit 中以编程方式设置代码选择?
我在 Microsoft Surface 应用程序中使用 AvalonEdit。由于联系人的处理方式与普通 WPF 应用程序中的处理方式略有不同,因此我想以编程方式设置代码选择。
通过代码选择,我的意思是如果用户用鼠标选择这部分代码,其背景就会更改。
我现在选择的 DocumentLine 或 VisualLine 应该在哪里开始和在哪里结束。但我现在该如何做出这个选择呢?
I'm using AvalonEdit in a Microsoft Surface application. Since the Contacts are handled a little bit different there than in a normal WPF application, I want to set the code selection programatically.
By code selection I mean this part of the code whichs background is changed if the user select it with the mouse.
I now the DocumentLine or the VisualLine where the selection should start and where it should end. But how can I now make this selection?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
this.Editor
是AvalonEdit
对象,selectionStart
是相对于正在编辑的文本开头的偏移量。this.Editor
isAvalonEdit
object,selectionStart
is offset relative to the start of the text being edited.