I'm trying to set the KeyboardNavigation.TabNavigation property to Local using a style template. For some reason, it's not working, even in this most basic format:
The setter of the Mask property works, but the tab navigation in radMaskedInput1 still acts like it's set to Continue. The tab navigation in radMaskedNumericInput2 properly only puts the cursor in the input box once and then exits on the next tab.
I'm using RadControls for WPF v.2011.2.920.40
<
StackPanel
>
<
telerik:RadMaskedNumericInput
Name
=
"radMaskedNumericInput1"
>
<
telerik:RadMaskedNumericInput.Style
>
<
Style
TargetType
=
"telerik:RadMaskedNumericInput"
>
<
Setter
Property
=
"KeyboardNavigation.TabNavigation"
Value
=
"Local"
/>
<
Setter
Property
=
"Mask"
Value
=
"#3.4"
></
Setter
>
</
Style
>
</
telerik:RadMaskedNumericInput.Style
>
</
telerik:RadMaskedNumericInput
>
<
telerik:RadMaskedNumericInput
Name
=
"radMaskedNumericInput2"
KeyboardNavigation.TabNavigation
=
"Local"
Mask
=
"#6.3"
/>
</
StackPanel
>
The setter of the Mask property works, but the tab navigation in radMaskedInput1 still acts like it's set to Continue. The tab navigation in radMaskedNumericInput2 properly only puts the cursor in the input box once and then exits on the next tab.
I'm using RadControls for WPF v.2011.2.920.40