My First Tablet PC Application using C#


This step by step tutorial shows how to create our first Tablet PC application.

1. Create a new Windows application using Visual Studio .NET. I call my project "HelloTabletPC".

2. To use the Tablet PC functionality in our application, we have to add reference to the Tablet PC API, which provides access to the library that contains the functionality to access Tablet PC. As you can see from following Figure, I select Microsoft Tablet PC API on the Add Reference dialog and click OK.



Which adds Microsoft.Ink namespace to our References list as you can see from the following figure.

3. The Tablet PC Ink functionality of Tablet PC is defined in the Microsoft.Ink namespace. So we include the namespace in our application by adding the following line of code.

using Microsoft.Ink;

4. Now we write code to enable Ink overlay on the form so we can use Ink or mouse to write on the Form. On the Form's load event handler, we write the following code:

InkOverlay inkOverlay = new InkOverlay();
inkOverlay.Handle= this.Handle;
inkOverlay.Enabled = true;

This code enables the ink overlay on the form. Which means you can use pen to write on the Form.

5. Now using pen, I write the following on the form. You can even use the mouse.

That's it. 


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.