WPF TextBox SpellChecking Problem

Posted by Alex on Stack Overflow See other posts from Stack Overflow or by Alex
Published on 2010-03-29T14:52:33Z Indexed on 2010/03/29 14:53 UTC
Read the original article Hit count: 695

Filed under:
|
|
|
|

How can I change the spellchecking language of a WPF textbox to french using XAML? I tried this but it doesn't work.

<TextBox AcceptsReturn="true" SpellCheck.IsEnabled="true" FontSize="12" BorderBrush="Blue" Height="100" Language="fr-fr" />

French is supposed to be one of the 4 supported languages for spellchecking in WPF so I don't understand why it doesn't work. I also tried fr-CA but it still won't work.

© Stack Overflow or respective owner

Related posts about xaml

Related posts about wpf