How can I add T9 to the TextBox?

T9 input mode is the predictive text input feature on the devices. To add this feature to your TextBox use this code:

public Form1()
{
InitializeComponent();

InputModeEditor.SetInputMode(this.tbNotes, InputMode.AlphaT9);
}

To make this method available, you will need to add this references:
using Microsoft.WindowsCE.Forms;
That's all :)



Source code: http://www.winmobile.euweb.cz/#Post01

0 comments:

Post a Comment