Posted 02 Feb 2011 Link to this post
dictionary =
new
RadDictionary();
dictionary.Load(resource);
((DocumentSpellChecker)
this
.richTextArea.SpellChecker).AddDictionary(dictionary,
CultureInfo(
"it-IT"
));
Posted 04 Feb 2011 Link to this post
Currently the SpellChecker gets the suggestions from the dictionary, associated with the current culture of the UI thread (which in your case is English). What you can do now is to set the current culture of the UI thread like this:
Thread.CurrentThread.CurrentCulture =
);