Hi,
we are using your DateTimeEditBox controls on a form together with textboxes.
All controls will have a TabIndex and IsTabStop is set True.
The resulting tab order is something stupid.
As seen in the example, tabbing around you can't reach the last two textboxes.Are we doing something wrong?
Thanks.
we are using your DateTimeEditBox controls on a form together with textboxes.
All controls will have a TabIndex and IsTabStop is set True.
The resulting tab order is something stupid.
As seen in the example, tabbing around you can't reach the last two textboxes.
<Window x:Class="WpfApplication2.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow" Height="268" Width="247" xmlns:editors="http://schemas.actiprosoftware.com/winfx/xaml/editors">
<Grid>
<TextBox Height="24" HorizontalAlignment="Left" Margin="12,12,0,0" Name="textBox1" VerticalAlignment="Top" Width="200" TabIndex="0" />
<editors:DateTimeEditBox Height="24" HorizontalAlignment="Left" Margin="12,55,0,0" Name="dateTimeEditBox1" VerticalAlignment="Top" Width="200" TabIndex="1" IsTabStop="True" />
<editors:DateTimeEditBox Height="23" HorizontalAlignment="Left" Margin="12,98,0,0" Name="dateTimeEditBox2" VerticalAlignment="Top" Width="200" TabIndex="2" IsTabStop="True" />
<TextBox Height="24" HorizontalAlignment="Left" Margin="12,143,0,0" Name="textBox2" VerticalAlignment="Top" Width="200" TabIndex="3" />
<TextBox Height="24" HorizontalAlignment="Left" Margin="12,189,0,0" Name="textBox3" VerticalAlignment="Top" Width="200" MaxLines="4" TabIndex="4" SnapsToDevicePixels="True" />
</Grid>
</Window>
Thanks.