SelectAll does not work property with DisplayMode: IncludeLiterals, IncludePromptChars, and Raw as seen by my attached screenshot.
I have attached a sample project. Just tab through the controls.
Hi,
There is something wrong with SelectAll method when using a mask like your. You can workaround your issue with using these:
maskedInput.SelectionStart=0
maskedInput.SelectionLength = maskedInput.TextLength
This will select all characters in the maskedInput.
Regerds,
Anastas