I have a PasswordBox in a WPF application that is used on a touch screen without keyboard. This is a problem since the virtual keyboard icon is not shown when the PasswordBox is clicked.
I get the feeling it should have something to do with InputMethod and its IsInputMethodEnabled property, but the following still does not work:
<PasswordBox InputMethod.IsInputMethodEnabled="True"/>
Is it possible to force the virtual keyboard to pop up?
As a workaround I created a custom virtual keyboard that directly modifies the PasswordBox.Password..