C# 具有语法突出显示的文本框/富文本框?[C#]
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/1087735/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
A textbox/richtextbox that has syntax highlighting? [C#]
提问by Kredns
Where can I find a control for WinForms that will highlight source code pasted into it? I would like one that has syntax highlighting support for many different languages but if it only works with C# I would be fine with that also.
在哪里可以找到 WinForms 的控件,该控件将突出显示粘贴到其中的源代码?我想要一种对许多不同语言有语法高亮支持的语言,但如果它只适用于 C#,我也可以。
采纳答案by Fernando
Scintilla.NETis probably what you're looking for
Scintilla.NET可能就是你要找的
回答by Vin
Not sure if there is any out of the box non-thirdparty solution to this.
不确定是否有任何开箱即用的非第三方解决方案。
But, have you looked at Actipro SyntaxEditorcomponent. LinqPad, the ubercool linq tool uses it for syntax highlighting and intellisense.
但是,您是否看过Actipro SyntaxEditor组件。LinqPad,ubercool linq 工具将它用于语法高亮和智能感知。
回答by Mike Hofer
If you're willing to pay for a control, I highly recommend this one: QWhale Syntax Edit. It's got a ton of features, comes with source code, and supports a lot of languages. I use it myself for C#, VB.NET, SQL (MS & Oracle), and it's got everything that VS provides.
如果您愿意为控件付费,我强烈推荐这个:QWhale Syntax Edit。它具有大量功能,带有源代码,并支持多种语言。我自己将它用于 C#、VB.NET、SQL(MS 和 Oracle),它拥有 VS 提供的一切。
回答by CMS
As Open Source alternatives, give a look to:
作为开源替代品,看看:
- dotNetFireball
- ICSharpCode.TextEditor from SharpDevelop
- 点网火球
- SharpDevelop 的ICSharpCode.TextEditor
回答by Dmitri Nesteruk
Check out the AvalonEdit control. There is a good articleon CodeProject explaining how to use it.
查看 AvalonEdit 控件。CodeProject 上有一篇很好的文章解释了如何使用它。
回答by imaximchuk
回答by volody
Just recently have found a nice control from codeproject Fast Colored TextBox for syntax highlighting.
最近从 codeproject Fast Colored TextBox 中发现了一个很好的控件,用于语法高亮显示。
The only issue with using Rich Text Box as highlighter is slow performance on coloring, in cases when the size of the document is big. For a medium size documents this issue can be fixed by delayed highlighting.
在文档很大的情况下,使用富文本框作为荧光笔的唯一问题是着色性能缓慢。对于中等大小的文档,可以通过延迟突出显示来解决此问题。
回答by David Maron
Add ICSharpCode.TextEditor assembly reference to a project, choose assembly and controls for Visual Studio Toolbox. After that, you can put control to the Form. Surprisingly, you will not see Property to choose syntax highlight schema. Instead of this, you have to use method SetHighlighting. String parameter sets highlighting schema from available schemas list. These schemas are embedded into the control.
将 ICSharpCode.TextEditor 程序集引用添加到项目中,为 Visual Studio Toolbox 选择程序集和控件。之后,您可以将控制权置于 Form 中。令人惊讶的是,您不会看到选择语法高亮模式的属性。取而代之的是,您必须使用方法 SetHighlighting。字符串参数集从可用模式列表中突出显示模式。这些模式嵌入到控件中。
How to use, change schemas and download sample, look following article
如何使用、更改架构和下载示例,请看以下文章