使用Hunspell和Silverlight

时间:2011-12-09 18:06:34

标签: silverlight hunspell

有没有人想过在Silverlight中实现Hunspell的好方法?我看到一些第三方TextBox控件可供购买,但我只想在后端使用Hunspell

1 个答案:

答案 0 :(得分:0)

设计WCF Ria服务,其中包含拼写错误的单词列表及其建议。然后就是要弄清楚如何强调拼错的词语。

[Invoke]
public IEnumerable<WrongWord> SpellCheck(string Passage)
{
}

public class WrongWord
{
  [Key] public property int Id {get; set; }
  public string Word {get; set; }
  public IEnumerable<string> Suggestions {get; set; }
}

您可能可以使用.NET绑定,例如http://nhunspell.sourceforge.net/或者你可以自己包裹hunspell。