I have a question about my RadGridView. It contains checkboxes, and I noticed that if I don’t click directly on the checkbox but instead on the element surrounding it, the checkbox disappears and only becomes visible again once I click on another element.
RadGriddView
AutoGenerateColumns="False"
CanUserDeleteRows="False"
CanUserFreezeColumns="False"
CanUserReorderColumns="False"
CanUserResizeColumns="False"
CanUserSearch="False"
CanUserSortColumns="False"
GridLinesVisibility="Both"
GroupRenderMode="Flat"
ItemsSource="{Binding Items}"
RowIndicatorVisibility="Collapsed"
ShowGroupPanel="False"
<t:GridViewDataColumn
Width="*"
MinWidth="70"
Header="Test"
HeaderTextAlignment="Center">
<t:GridViewColumn.CellTemplate>
<DataTemplate>
<CheckBox
HorizontalAlignment="Center"
FontSize="16"
IsChecked="{Binding Test1}"
IsHitTestVisible="True"
Tag="{Binding}" />
</DataTemplate>
</t:GridViewColumn.CellTemplate>
</t:GridViewDataColumn>
When I use this t:GridViewCheckBoxColumn, the behavior is not as described above. However, I have to click three times on the checkbox, once before I can set the checkmark in the checkbox.
<t:GridViewCheckBoxColumn
MinWidth="50"
DataMemberBinding="{Binding Test1}"
Header="Test1" />