$99 VS $1000+. UI Control for ASP.NET AJAX(contains chart and gridview).
Spell Checker Control for Windows Forms
Perform multilingual spell checking for rich or standard text editors in Windows Forms applications
Home > WinForms UI Controls > User Manual > Get Started SpellChecker in C#

Guide for KetticSpellChecker control for Windows Forms in C#.NET

KetticSpellChecker control is used to perform the spell checking for rich or standard text editors in C# Windows Forms applications. This component is able to check the spelling in any other Kettic UI controls, such as DataGridView, RichTextEditor, and ListView, etc. It supports multiple languages spell checking with the built-in dictionaries and also allows developers add any other dictionaries for a specific language spelling checking. The Spell Checker component is highly customizable and can be integrated with any other Kettic UI WinForms controls.

Getting Started of KetticSpellChecker control for WinForms

The following steps show how to use the KetticSpellChecker control to check the spelling in the KetticTextBox WinForms control.
  • Open your existing Windows Forms project or create a new one in Microsoft Visual Studio
  • Drag the KetticTextBox control from the toolbox and drop it on the form
  • Drag the KetticSpellChecker control for WinForms from the toolbox and drop it on the form
  • Drag the KetticButton WinForms control from the toolbox and drop it on the form
  • Click the KetticButton item to invoke the spelling check functionality of KetticSpellChecker control
  • Use the following C# code to set the text of the KetticTextBox control

this.ketticTextBox1.Text = "Use KetticSpellChecjker to check spalling";
  • Subscribe to the Click event of the KetticButton component and then call the Check method of KetticSpellChecker in the event handler
  • Pass the KetticTextBox instance to the event of the KetticButton as a parameter as the C# code below.

private void ketticButton1_Click(object sender, EventArgs e)
{
this.ketticSpellChecker1.Check(this.ketticTextBox1);
}
  • Click the button to display the KetticSpellChecker form, and the misspelling words will be underlined with red wavy line and the proper spelling will be suggested when you right click your mouse
UI Controlsfor Windows Forms
.NET WinForms UI Overview.NET WinForms UI Features.NET WinForms UI GuideC# WinForms UI DesignVB.NET WinForms UI Design
WinForms UI Controls