Hello,
I juste use a timePicker on a WPF Application.
I setted a tab index in the xaml code, and cursor don't go to this contrôle :(
__Here is my xaml code :__
```
<xctk:TimePicker Grid.Column="2" x:Name="TimePicker_Heure" TabIndex="4" VerticalAlignment="Center" Height="20" Margin="102,4,10,4"/>
```
Thanks a lot,
Best regards,
Nixeus
Comments: ** Comment from web user: BoucherS **
I juste use a timePicker on a WPF Application.
I setted a tab index in the xaml code, and cursor don't go to this contrôle :(
__Here is my xaml code :__
```
<xctk:TimePicker Grid.Column="2" x:Name="TimePicker_Heure" TabIndex="4" VerticalAlignment="Center" Height="20" Margin="102,4,10,4"/>
```
Thanks a lot,
Best regards,
Nixeus
Comments: ** Comment from web user: BoucherS **
I don't have the exact date for the v2.0 release. It shouldn't too long.
To solve the issue, in the TimePicker generic.xaml file, there is a DateTimeUpDown element. Try adding
TabIndex="{TemplateBinding TabIndex}"
to it.
Also, in the DateTimeUpDown generic.xaml file, try adding
<Setter Property="IsTabStop" Value="False" />
to the style targeting "DateTimeUpDown".