C# Winform 的 WYSIWYG 控件

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/258893/
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

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-08-03 20:16:36  来源:igfitidea点击:

WYSIWYG Control for Winform

c#.netvb.netwinforms

提问by John Chuckran

I am looking for a free WYSIWYG editor control to be used in a Winform application. The applications primary language is VB but using C# is also an option. To clarify I need a rich text editor control that has a formatting bar. I have looked all over the web and the only options I can find are expensive control packages that have more than I need. I am not adverse to creating my own version of this control, it would just be nice to find a free and open alternative.

我正在寻找要在 Winform 应用程序中使用的免费 WYSIWYG 编辑器控件。应用程序的主要语言是 VB,但使用 C# 也是一种选择。为了澄清我需要一个具有格式栏的富文本编辑器控件。我已经浏览了整个网络,我能找到的唯一选择是昂贵的控制包,它们的功能超出了我的需要。我并不反对创建我自己的这个控件版本,找到一个免费和开放的替代方案会很好。

采纳答案by Biri

Actually it's very easy to write your own based on the RichTextBox control.

实际上,基于 RichTextBox 控件编写自己的控件非常容易。

I would go that way for sure. Your biggest problem will be the icons for the edit bar.

我肯定会走那条路。您最大的问题将是编辑栏的图标。

Check this onefor starter.

检查这个作为初学者。