Platform: C# WPF
Environment: Visual Studio 2013
Question # 1: I want to show third party on screen keyboard on mouse left button down on PasswordBox
control of C# WPF. I used the following code:
private void PasswordBox_MouseLeftButtonDown(object sender, MouseButtonEventArgs e)
{
System.Diagnostics.Process.Start("D:\\CCOnScreenKeyboard.exe");
}
But it does not start on screen key board. Instead it triggers on MouseDoubleClick
and GotFocus
events.
Question # 2:
I want to Hide on screen keyboard when mouse click outside the PasswordBox
and Show again on mouse left button down inside box.
Question # 3:
I want to show keyboard on single click instead of mouse double click