Working with Tablet PC InkEdit Control in C#


Tablet PC SDK provides two very powerful but easy to use Ink controls for Ink recognition. These two controls are - InkEdit and InkPicture. This article discusses how to work with InkEdit and InkPicture controls.

Adding Tablet PC Ink Controls

Ink recognition controls are controls that recognizes Tablet PC Ink and provides functionality to work with Ink. Ink controls are installed as .NET components and defined in the Microsoft.Ink namespace, which means both controls are managed controls. These controls are a part of Tablet PC SDK.

You can add Ink Controls to the Toolbox by right clicking on the Components tab of Toolbox and select Add/Remove Items, which launches Customize Toolbox dialog. Select InkEdit and InkPicture check boxes and click OK. ( See Figure 1).

Figure 1. Adding Ink Controls to Toolbox.

Once these controls are added to Toolbox, you can simply drag and drop them to the Form and work with them. See Figure 2.

Figure 2. InkEdit and InkPicture controls.

InkEdit Control

InkEdit control is an extended version of Windows Forms RichTextBox control. Besides the standard TextBox functionality, this control is Ink enabled, which means if you draw in the control using Tablet PC Ink Pen, the control recognizes the text written in it.

To test the InkEdit control, I create a Windows Forms application and drags InkEdit control to the Form. Download InkEdit Source code here. See Figure 3.

Figure 3. InkEdit sample.

That's it. We are all done. There is no need to write any code. Now if you run the application and use pen to write on the InkEdit control as shown in Figure 4.

Figure 4. InkEdit control with ink.

The next second you will notice the InkEdit control and changes ink to text as shown in Figure 5. If you don't have your recognizer load, you may see some spelling mistakes as you can see our control has converted "Hi" to "this". So no more sloppy writing.

Figure 5. Converted ink to text.

The InkEdit control provides properties, methods, and events to work with the control and manage control on other levels. For example, the Text property of InkEdit returns the text of the control.

Pretty simple. Huh?

The InkMode Property

The InkMode property is used to set whether InkEdit control accepts ink and gesture. If you do not want InkEdit control to accept ink, you can disable InkMode by using InkMode enumerations.

inkEdit1.InkMode = InkMode.Disabled;


Similar Articles
Mindcracker
Founded in 2003, Mindcracker is the authority in custom software development and innovation. We put best practices into action. We deliver solutions based on consumer and industry analysis.