Hi guys,
I have a listview with following column
<GridViewColumn Header="name" local:GridViewSort.PropertyName="Name">
<GridViewColumn.CellTemplate>
<DataTemplate>
<TextBox Text="{Binding Name}" IsReadOnly="{Binding IsReadOnly}" Style="{StaticResource txtEditable}" KeyDown="SeqRenameTextBox_KeyDown" LostFocus="SeqRenameTextBox_LostFocus" />
</DataTemplate>
</GridViewColumn.CellTemplate>
</GridViewColumn>
<GridViewColumn>
...
</GridViewColumn>
The problem is when I click on the TextBox, the listview doesn't select the item. Only when I click on the other normal column it will select the item.
Is there anything (e.g. TextBox inside) that will block the ListView from select the item?
Many thanks in advance.