It seems that wpf accesskeys do not work when a NumericUpDown field has focus. I was able to reproduce this in a new project with just a label and an NumericUpDown control. Can you offer a work around or bug fix? Please let me know if you need more detail.
Alex
Thanks,
Alex
| <Window x:Class="AccessKeySample.Window1" |
| xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
| xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
| Height="125" Width="75" |
| xmlns:d="clr-namespace:Telerik.Windows.Controls;assembly=Telerik.Windows.Controls.Input"> |
| <StackPanel> |
| <Label x:Name="_label" Target="{Binding ElementName=_textBox}"> |
| tes_t |
| </Label> |
| <TextBox x:Name="_textBox"/> |
| <d:RadNumericUpDown/> |
| </StackPanel> |
| </Window> |