Hi,
I have a custom PartEditBox with some text boxes in the drop down content. When the keyboard focus switches between each text box the caret remains visible even though the focus is in a different text box.
Some sample code to reproduce this is below.
I am using version 14.2.0610.
Can anything be done to fix this?
Thanks in advance
Matt
<editors:PartEditBox Grid.Row="0"
DropDownButtonVisibility="Visible">
<editors:PartEditBox.DropDownContent>
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="300" />
</Grid.ColumnDefinitions>
<TextBox Grid.Row="0"
Grid.Column="0"
Margin="2" />
<TextBox Grid.Row="1"
Grid.Column="0"
Margin="2" />
<TextBox Grid.Row="2"
Grid.Column="0"
Margin="2" />
</Grid>
</editors:PartEditBox.DropDownContent>
</editors:PartEditBox>