The touchscreen keyboard is provided by the Windows IoT operating system and needs to be enabled.
Open the web interface based “Windows Device Portal” as above and select: Device Settings > On-screen Keyboard > Set the checkbox to ticked
Make Keyboard appear
Give text box focus
txtMyTextBox.Focus(FocusState.Programmatic);
Another method (won’t always work but can be useful sometimes)
InputPane.GetForCurrentView().TryShow();
Using a hidden TextBox
You can’t set a text box to not visible and have it still take focus / text entry, but you can achieve the same thing by setting its opacity to 0:
MyTextBox.Opacity = 0;
Stopping keyboard appearing
The TextBox class has PreventKeyboardDisplayOnProgrammaticFocus property
Selecting keyboard type
Use input scope to select, e.g.
<TextBox Header="Name" InputScope="Default"/>
<TextBox Header="Email Address" InputScope="EmailSmtpAddress"/>
<TextBox Header="Telephone Number" InputScope="TelephoneNumber"/>
<TextBox Header="Web site" InputScope="Url"/>
USEFUL?
We benefit hugely from resources on the web so we decided we should try and give back some of our knowledge and resources to the community by opening up many of our company’s internal notes and libraries through mini sites like this. We hope you find the site helpful.
Please feel free to comment if you can add help to this page or point out issues and solutions you have found, but please note that we do not provide support on this site. If you need help with a problem please use one of the many online forums.