vote up 0 vote down star

I'm trying to duplicate the following behavior (WM6).

Go to Settings -> About -> Device ID. The Device Name textbox gets the focus, causing the onscreen keyboard to pop up.

I'd like to be able to do the same in my application, preferably in managed code.

flag

2 Answers

vote up 5 vote down check

The onscreen keyboard is in the Microsoft.WindowsCE.Forms namespace.

Add a project reference to that and you'll have the InputPanel control available, add one of those to your form then in your code behind.

private void txtField_GotFocus(object sender, EventArgs e)
{
     //Enabled == show
     inputPanel.Enabled = true;
}

private void txtField_LostFocus(object sender, EventArgs e)
{
     inputPanel.Enabled = false;
}
link|flag
Thanks, works like a charm. Who could imagine the keyboard was called InputPanel? :) – Dmitry Shechtman Mar 31 at 9:05
vote up 0 vote down

I would add that you also need to instantiate an instance of the Microsoft.WindowsCE.Forms.InputPanel class for your project (in addtion to adding a reference to the namespace as noted by TreeUK).

The easiest way to do this is to drag an InputPanel control onto your Windows Form in Design mode. Whatever you name your InputPanel instance would be what you reference in the event handlers for your form fields.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.