我在WindowsPhone 8.1应用程序中使用NetSpell.SpellChecker
,但是当我编译代码时,我收到以下错误:
base3类或接口'System.CompoenentModer.Compoenent'中 由NetSpell.SpellChecker.Spelling类型引用的程序集xxx可以 没有解决。
有没有人知道如何解决它? Windows Phone应用程序是否支持NetSpell? 如果没有,您是否知道如何在Windows Phone中实现拼写检查/自动更正?
答案 0 :(得分:0)
如果您使用Windows运行时为Windows Phone构建应用程序,则内置支持,请使用:
<TextBox IsSpellCheckEnabled="True" />
不幸的是,这在Windows Phone Silverlight应用程序中不起作用。
NetSpell库似乎与Windows Phone不兼容,它依赖于System.ComponentModel.Component
,而Windows Phone不支持MSDN documentation。我还没有找到另一个拼写检查库。 (NHunSpell也doesn't seem to work with Windows Phone)
如果适用于您的应用,我建议您将该应用编写为Windows Phone应用(Windows运行时)并使用内置支持。