Hi,
This is already fixed. The fix is included in v3.1.
To fix it, go in file :
-Xceed.wpf.Toolkit/NumericUpDown/Themes/Aero2.NormalColor.xaml (for Windows8 and up)
-Xceed.wpf.Toolkit/NumericUpDown/Themes/Generic.xaml (for other Windows)
In the style for "NumericUpDown"
a) Replace
<Setter Property="Focusable" Value="False" />
with
<Setter Property="IsTabStop" Value="False" />
b) In the "PART_TextBox"
replace
IsTabStop="{TemplateBinding IsTabStop}"
with
IsTabStop="True"
This is already fixed. The fix is included in v3.1.
To fix it, go in file :
-Xceed.wpf.Toolkit/NumericUpDown/Themes/Aero2.NormalColor.xaml (for Windows8 and up)
-Xceed.wpf.Toolkit/NumericUpDown/Themes/Generic.xaml (for other Windows)
In the style for "NumericUpDown"
a) Replace
<Setter Property="Focusable" Value="False" />
with
<Setter Property="IsTabStop" Value="False" />
b) In the "PART_TextBox"
replace
IsTabStop="{TemplateBinding IsTabStop}"
with
IsTabStop="True"