MaterialDesignInXamlToolkit
MaterialDesignInXamlToolkit copied to clipboard
NumericUpDown not focusable by pressing tab
Bug explanation
When trying to focus the NumericUpDown control via tab (or shift+tab) the TextBox is not focused, but rather the entire control itself:
Version
5.1.0
IsTabStop=false solves the annoying useless tabStop on the outer part of the control. However when you programmatically focus the NumericUpDown control, it is the outer control that gets the focus, not the textbox part which in my opinion should be the default.
@jamesport079 I agree with you. I opened a PR #3656 that should make the NumericUpDown control focusable via code and keyboard.