如何在Microsoft Surface应用程序中使用AvalonEdit?
我在 Microsoft Surface 应用程序中使用 AvalonEdit 。它工作得很好,但我在折叠方面遇到了一个问题。有这个小+图标可以启用折叠。但我不知道如何注册适当的联系人处理程序。有任何提示如何做到这一点吗?
I'm using AvalonEdit in a Microsoft Surface application. It's working great, but I have one problem with folding. There are this small + icons to enable folding. But I don't know how I can register the appropriate contact handlers. Any hints how to do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不确定你所说的“联系处理程序”是什么意思。
但是您必须提供基于 AbstractFoldingStrategy 的折叠策略类。然而,与最常用的大括号配合使用的折叠策略并不在默认的 AvalonEditor 包中,您可以在示例应用程序中找到一个或者 在互联网上的某个地方找到它。但是,如果不对正在编辑的代码进行语法分析,就无法真正做到 100%,因此这个简单的 BraceFoldingStrategy 偶尔会表现得相当奇怪。
I'm not sure what you mean by "contact handlers".
But you have to supply a folding strategy class based on AbstractFoldingStrategy. However folding strategy to go with most commonly used braces is not in the default AvalonEditor package, you can find one in the sample application or find it somewhere on the internet. But as you can't really do it to 100% without syntactic analysis of the code being edited, this simple BraceFoldingStrategy will occasionally behave in a rather odd way.