gpt4 book ai didi

c# - WinForms WebBrowser 中的拼写检查

转载 作者:行者123 更新时间:2023-11-30 12:35:29 24 4
gpt4 key购买 nike

我们希望通过 WebBrowser 控件向应用程序中托管的网站添加拼写检查。

如果您在较新的浏览器(如 IE9 等)中打开我们的网站,默认情况下拼写检查已在浏览器中运行。

有没有办法让它在 WinForms WebBrowser 控件中工作?

编辑:让它在 WPF 的框架控件中工作怎么样?

最佳答案

使用 IE 11 或 Edge 的拼写检查现在可以在 Web 浏览器控件和 Windows 10 上运行。我已经设法让它在一个令人满意的 body 上工作:

foreach (HtmlElement el in Document.All)
{
el.SetAttribute("unselectable", "on");
el.SetAttribute("contenteditable", "false");
}
Document.Body.SetAttribute("width", Width.ToString() + "px");
Document.Body.SetAttribute("contenteditable", "true");
Document.Body.SetAttribute("spellcheck", "true");

关于c# - WinForms WebBrowser 中的拼写检查,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5394865/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com