CKEditor是否可以在WinForms应用程序中用于(X)HTML编辑
本文关键字:用于 编辑 HTML 应用程序 是否 WinForms CKEditor | 更新日期: 2023-09-27 17:56:32
我已经将代码从winforms html编辑器改编为C#(见下文)。 是否可以改用 CKEditor?
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace WebEditorTest
{
/// <summary>
/// https://stackoverflow.com/questions/214124/winforms-html-editor
/// </summary>
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
webBrowser1.Navigate("about:blank");
Application.DoEvents();
webBrowser1.Document.OpenNew(false).Write("<html><body><div id='"editable'">Edit this text</div></body></html>");
foreach (HtmlElement el in webBrowser1.Document.All)
{
el.SetAttribute("unselectable", "on");
el.SetAttribute("contenteditable", "false");
}
foreach (HtmlElement el in webBrowser1.Document.All.GetElementsByName("editable"))
{
el.SetAttribute("width", webBrowser1.Width + "px");
el.SetAttribute("height", "100%");
el.SetAttribute("contenteditable", "true");
}
webBrowser1.Document.DomDocument.GetType().GetProperty("designMode").SetValue(webBrowser1.Document.DomDocument, "on", null);
webBrowser1.IsWebBrowserContextMenuEnabled = false;
}
private void button1_Click(object sender, EventArgs e)
{
textBoxMarkup.Text = webBrowser1.DocumentText;
}
}
}
是的。由于您已经在使用 WebBrowser 控件,因此没有什么可以阻止您加载包含 CKEditor 的 HTML 页面并通过 DOM 和 InvokeScript 与之交互。
更新 - 下面是交互的工作示例:
形式.cs
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
webBrowser1.Navigate("C:''blank.htm");
Application.DoEvents();
}
private void button1_Click(object sender, EventArgs e)
{
webBrowser1.Document.InvokeScript("InitEditor");
}
}
空白.htm
<html>
<head>
<script src='http://ckeditor.com/apps/ckeditor/4.2/ckeditor.js?mriyyd'></script>
<script type='text/javascript'>
function InitEditor() { CKEDITOR.replace('editor1'); }
</script>
</head>
<body>
<textarea cols='80' id='editor1' name='editor1' rows='10'>
<span>Lorem Ipsum</span>
</textarea>
</body>
</html>
根据经验,您肯定可以在WinForms应用程序中使用CKEditor。 我详细介绍了我所做的事情 http://www.sheldmandu.com/programming/wysiwyg-html-editor-in-dotnet-wpf-windows-forms-vb6-in-web-browser 实际上我现在要为它编写一个控件,因为在每个项目中手动执行操作或复制代码有点烦人。