Silverlight Spell Checker Component

This free Silverlight Spell Checker component allows you to apply real-time spell checking functionality to your Silverlight applications with the minimum of code.  Dictionaries are not supplied, however they can be freely downloaded and used with this component.

To use the Spell Checker you will need to add a reference to Liquid.Components.dll in your project.

How to Use the Spell Checker Component

To demonstrate the Spell Checker component we have a single TextBox and a Button.  The Button Click event handler takes the textbox text and runs it through the spell checker and populates a ListBox with spelling suggestions if the input word was not found in the dictionary.  In your Silverlight XAML:

<UserControl x:Class="SpellChecker.Page"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Width="400" Height="300">
    <Canvas>
        <TextBox x:Name="word" Canvas.Left="5" Canvas.Top="10" Width="200" />
        <Button Content="Check" Canvas.Left="220" Canvas.Top="10" Click="Button_Click" />
        <TextBlock Canvas.Left="5" Canvas.Top="40" Text="Suggestions" FontSize="25" />
        <ListBox x:Name="suggestions" Canvas.Left="5" Canvas.Top="75" Width="200" Height="100" />
    </Canvas>
</UserControl>


In your C# code behind file we handle the button click event and make the call to CheckWord() which returns true to indicate a correct word.  If the word is incorrect we call GetSuggestions() which returns a List<string> collection of spelling suggestions which we use to simply populate our ListBox.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Shapes;

namespace SpellChecker
{
    public partial class Page : UserControl
    {
        private Liquid.Components.SpellChecker _spellChecker;

        public Page()
        {
            InitializeComponent();

            _spellChecker = new Liquid.Components.SpellChecker((this.GetType().Assembly.GetManifestResourceStream("SpellChecker.dictionary.en-US.dic")));
        }

        private void Button_Click(object sender, RoutedEventArgs e)
        {
            bool success = _spellChecker.CheckWord(word.Text);
            List<string> suggest;

            if (!success)
            {
                suggest = _spellChecker.GetSuggestions(word.Text);
                suggestions.Items.Clear();

                foreach (string s in suggest)
                {
                    suggestions.Items.Add(new ListBoxItem() { Content = s });
                }
            }
        }
    }
}


Example Silverlight Spell Checker:

Silverlight Spell Checker

Post your Comments

 
 
Latest Games
Zombie Escape
Apr 19, 2016
Plays: 2,513

Zombie Escape ScreenshotDrive fast before the crazy mutant zombies get you!

6 Ratings/4.1 Average
Car Parking
Jan 16, 2016
Plays: 2,380

Car Parking ScreenshotGuide the car to its parking space in this fun Car Parking game.

1 Rating/5 Average
Trash It
Jan 11, 2016
Plays: 2,284

Trash It ScreenshotAim for the Trash Can and get the various items of Trash in the bin.

4 Ratings/5 Average
Sky Fly
Jan 11, 2016
Plays: 2,435

Sky Fly ScreenshotFly your plane in this colorful vertical scrolling shoot-em-up. Blast the bad guys and collect any bonus's they leave behind.

1 Rating/5 Average
Professor Snappy
Jan 11, 2016
Plays: 1,969

Professor Snappy ScreenshotPop as many bubbles as possible in this fun and colorful bubble popping game. The levels start off easy enough but gradually get harder!

1 Rating/5 Average
Monster Match Saga
Jan 10, 2016
Plays: 2,294

Monster Match Saga ScreenshotHere we have a bunch of monsters that need to be matched up. Look out for the bomb and spinning monsters that will cause special damage!

3 Ratings/4.6 Average
Fly Bird Fly
Jan 10, 2016
Plays: 2,121

Fly Bird Fly ScreenshotGuide your friendly Bird through the maze of pipes and other obstacles collecting the Stars in this cool arcade game inspired by the legendary Flappy Bird.

1 Rating/5 Average
Life In One
Jan 10, 2016
Plays: 2,296

Life In One ScreenshotYou are stranded on an Alien planet. Your goal is to build a space rocket and escape. Start by building units to create power and mine the metal patches. Build defenses to defend your base from the advancing Aliens and Zombies!

2 Ratings/3 Average
X Pool
Jan 02, 2016
Plays: 2,912

X Pool ScreenshotPlay Pool against the computer or battle against your friends in the online mode!

3 Ratings/3 Average
Fruit Slicer
Jan 02, 2016
Plays: 2,009

Fruit Slicer ScreenshotSlice the fruit that is thrown up onto the screen. Slice the fruit into multiple pieces for maximum points!

1 Rating/5 Average