This question is locked. New answers and comments are not allowed.
I am using a simple textbox. When I try to implement the RadSpellChecker on it, as in the examples, it gives me an error that there is no spell check for this type of control.
I saw the older forum entry someone posted a while back, but my scenario is not the same. I am using a basic standard textbox and I do not have 'Reduce XAP size..." enabled in my project.
Here is my XAML Code:
And here is my C#:
See, pretty straight forward... hopefully the solution to whatever is causing me the issue is easy too :)
I saw the older forum entry someone posted a while back, but my scenario is not the same. I am using a basic standard textbox and I do not have 'Reduce XAP size..." enabled in my project.
Here is my XAML Code:
<TextBox x:Name="txtNotes" Width="520" Height="25" MaxLength="150" />And here is my C#:
private void rbtnSpellCheck_Click(object sender, RoutedEventArgs e){ RadSpellChecker.Check(txtNotes, SpellCheckingMode.WordByWord);}See, pretty straight forward... hopefully the solution to whatever is causing me the issue is easy too :)