Products Technologies Demo Docs Blog Support Company

Interactive Spelling Suggestions Using TX Spell .NET

With the introduction of touch-enabled interfaces in many applications, new requirements are coming up. Users expect tailored interfaces for various scenarios. In a touch-enabled word processor interface for example, suggestions of misspelled words should be accessible immediately. Thanks to the very fast and powerful suggestion engine of TX Spell .NET, such requirements can be easily fulfilled. Suggestions can be created in real-time and visualized in various ways. In this sample, we simply…

Interactive Spelling Suggestions Using TX Spell .NET

With the introduction of touch-enabled interfaces in many applications, new requirements are coming up. Users expect tailored interfaces for various scenarios. In a touch-enabled word processor interface for example, suggestions of misspelled words should be accessible immediately.

Interactive spelling suggestions using TX Spell .NET

Thanks to the very fast and powerful suggestion engine of TX Spell .NET, such requirements can be easily fulfilled. Suggestions can be created in real-time and visualized in various ways. In this sample, we simply created a user control with Label controls arranged in a FlowLayoutPanel for each suggestion. If the Label is clicked, the misspelled word at the current input position is replaced with the selected suggestion.

void suggestionPanel_TileClick(object sender,
    SuggestionPanel.TileClickEventArgs e)
{
    textControl1.MisspelledWords.Remove(
        textControl1.MisspelledWords.GetItem(), e.Text);
}

You can download the sample project for Visual Studio 2012 to do your own tests. At least trial versions of TX Text Control .NET for Windows Forms and TX Spell .NET for Windows Forms are required.

Stay in the loop!

Subscribe to the newsletter to receive the latest updates.

Related Posts

SampleSpell Checking

Spell Checking, MailMerge and UserDictionaries

Today, we received an interesting request from a TX Text Control user. The requirement was straightforward: A template should be prepared by merging data using the MailMerge component. The…


SampleSpell Checking

TX Spell .NET: Creating Custom Context Menus

Using context menus in TX Spell .NET is very simple: When connected to TX Text Control, the built-in context menu works out-of-the-box without implementing a single line of code. TX Text Control…


SampleSpell CheckingTutorial

Porting RapidSpell to TX Spell .NET

Our new spell checking component TX Spell .NET can be easily used to replace RapidSpell in your projects. Integrating TX Spell .NET into TX Text Control based applications is as easy as 1-2-3.…


SampleSpell Checking

Using the WSpell ActiveX Spelling Checker with TX Text Control

A brief article, with sample source code, that shows you how to add spell checking capabilities to your TX Text Control application, using the popular ActiveX spell checker, WSpell, from Wintertree.


Windows FormsWPF.NET

Create a Table of Contents in Windows Forms using C#

This article explains how to create a table of contents in Windows Forms using the ribbon or programmatically. Creating a table of contents is required to organize large documents.