SpellCheck in WPF Applcation?
By James J
You can set SpellCheck features to your textbox...
<Window x:Class="WpfApplication1.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow" Height="350" Width="525">
<Grid>
<TextBox Height="23" HorizontalAlignment="Left" Margin="12,12,0,0"
Name="textBox1" VerticalAlignment="Top" Width="120"
SpellCheck.IsEnabled="True" />
</Grid>
</Window>
See below image :
SpellCheck in WPF Applcation? (766 Views)