如何在 AvalonEdit 中以编程方式设置代码选择?

发布于 2024-10-26 18:40:54 字数 211 浏览 2 评论 0原文

我在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

冷︶言冷语的世界 2024-11-02 18:40:54

this.EditorAvalonEdit 对象,selectionStart 是相对于正在编辑的文本开头的偏移量。

        this.Editor.SelectionStart = selectionStart;
        this.Editor.SelectionEnd = selectionStart + selectionLength;

this.Editor is AvalonEdit object, selectionStart is offset relative to the start of the text being edited.

        this.Editor.SelectionStart = selectionStart;
        this.Editor.SelectionEnd = selectionStart + selectionLength;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文