使用smith html编辑器中的拼写检查控件进行检查

时间:2017-10-12 14:59:39

标签: c# wpf mvvm

我正在使用smith html编辑器来控制旧版本(1.0.0.0)。如果smith html编辑器中有任何最新版本。如何在编辑器窗口中添加拼写检查器控件。你能给我一个快速反应.....

1 个答案:

答案 0 :(得分:0)

如果您有源代码,那么您可以在下面进行代码更改并进行拼写检查。

HtmlEditor.xaml.cs 文件中添加此行

VisualEditor.Document.Body.SetAttribute("spellcheck", "true");
OnVisualEditorDocumentNavigated 方法

private void OnVisualEditorDocumentNavigated(object sender, System.Windows.Forms.WebBrowserNavigatedEventArgs e)
{            
        VisualEditor.Document.ContextMenuShowing += this.OnDocumentContextMenuShowing;
        htmldoc = new HtmlDocument(VisualEditor.Document);
        //((IHTMLDocument2)VisualEditor.Document.DomDocument).designMode = "ON";
        SetStylesheet();
        SetInitialContent();
        VisualEditor.Document.Body.SetAttribute("contenteditable", "true");             
        VisualEditor.Document.Body.SetAttribute("spellcheck", "true");
        VisualEditor.Document.Focus();
}