currently I am working on a WPF project for a Windows 8 tablet. When a user sets focus on an input field, the touch keyboard should appear.
private void txtVisFamName_GotFocus(object sender, RoutedEventArgs e)
{
Process.Start("tabtip.exe");
}
The tabtip keyboard appears but I was wondering if i could make it appear more customized. The uses has no need for certain buttons like ALT or CTRL.
I already tried adding an input scope to the textfield but it has no effect on the keyboard appearing.
<TextBox Text="{Binding VisitorFirstName}" id.Row="1" Grid.Column="2" TabIndex="1" Style="{StaticResource txtStyle}" Name="txtVisFamName" HorizontalAlignment="Left" Width="500" InputScope="PersonalFullName" GotFocus="txtVisFamName_GotFocus">
Any advise on how I can change the appearence of the keyboard would be appreciated. Thanks in advance.