C# 代码编辑器
我正在编写一个小应用程序来管理代码片段,所以我想要一个组件来显示代码(关键字着色、行编号...),那么从哪里获取这个组件以及如果它不存在如何实现它。
编辑:我不想编写代码编辑器,只想编写一个组件来显示具有最后功能(关键字着色、行编号...)而不是纯文本区域的代码 谢谢
i am writing a small app to manage code snippets , so i want a component to display the code (keyword coloring , lines numbering ...) , so where to get this component and if it doesnt exist how to implement it .
edit : i dont want to write a code editor , only a component to display code with last features (keyword coloring , lines numbering ...) instead of plain text area
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
对于语法突出显示检查:
富文本框控件中的语法突出显示
< a href="http://www.codeproject.com/KB/edit/SyntaxHighlighting.aspx" rel="nofollow noreferrer">C# 中的语法高亮文本框
如何在 WinForms 应用程序中实现语法突出显示
另外,您还可以检查必须有一些第三方控制。
For syntax highlighting check :
Syntax Highlighting in Rich TextBox Control
Syntax highlighting textbox in C#
How To Implement Syntax Highlighting In A WinForms Application
Also you can check there must be some 3rd party controls.
我建议 http://www.codeproject.com/Articles /161871/Fast-Colored-TextBox-for-syntax-highlighting 它有很多功能。
另外,封装 http://ace.c9.io/#nav=about 将是选项取决于您的技术堆栈
I suggest http://www.codeproject.com/Articles/161871/Fast-Colored-TextBox-for-syntax-highlighting which has a lot of features.
Also, encapsulating http://ace.c9.io/#nav=about would be an option depending on your technology stack