我正在使用SmithHtmlEditor并且它工作正常但我们已经请求添加WPF原生的拼写检查<TextBox SpellCheck.IsEnabled=True />
我只是尝试将该行添加到控件中的TextBox但是我没有得到波浪线和上下文菜单的建议,也许b / c WindowsFormsHost。我也愿意改变控制。
<Grid>
<TextBox x:Name="CodeEditor"
AcceptsReturn="True"
AcceptsTab="True"
AutoWordSelection="True"
VerticalScrollBarVisibility="Auto"
TextWrapping="Wrap"
SpellCheck.IsEnabled="True"/>
<WindowsFormsHost x:Name="BrowserHost">
<wf:WebBrowser x:Name="VisualEditor" />
</WindowsFormsHost>
</Grid>
答案 0 :(得分:1)
这样只能对文本编辑器进行拼写检查。如果你进入代码模式,你会看到那里启用了拼写检查,但只有那里。 WebBrowser是WinForms组件,你不能以这种方式添加拼写检查。