How can I add a CheckBox into a column header?
I'd need to hook up some events whenever the user clicks it too.
For the record:
<igDP:XamDataGrid.Resources>
<Style x:Key="CheckBoxedHeaderStyle" TargetType="{x:Type igDP:LabelPresenter}">
<Setter Property="ContentTemplate">
<Setter.Value>
<DataTemplate>
<CheckBox Name="HeaderCheckBox" Content="{Binding}" Click="HeaderCheckBox_Click"/>
</DataTemplate>
</Setter.Value>
</Setter>
</Style>
</igDP:XamDataGrid.Resources>
[....]
<igDP:FieldSettings AllowEdit="True" LabelPresenterStyle="{StaticResource CheckBoxedHeaderStyle}">
Hello,
You can start following this thread with the same issue:
http://community.infragistics.com/forums/p/5985/218759.aspx#218759