xml代码:
<DataTemplate x:Key="GridCheckBox">
<StackPanel Orientation="Horizontal">
<CheckBox IsChecked="{Binding stat, UpdateSourceTrigger=PropertyChanged}" Checked="CheckBox_Checked" Unchecked="UnCheckBox_Checked" HorizontalAlignment="Center" />
</StackPanel>
</DataTemplate>
<xcdg:DataGridControl x:Name="_dataGrid" AllowDrag="False">
<xcdg:DataGridControl.View>
<xcdg:TableflowView FixedColumnCount="1" />
</xcdg:DataGridControl.View>
<xcdg:DataGridControl.Columns>
<xcdg:Column FieldName="." Title="Select" Width="50" IsMainColumn="True"
CellContentTemplate="{StaticResource GridCheckBox}"
GroupValueTemplate="{StaticResource GridCheckBox}"/>
</xcdg:DataGridControl.Columns>
</xcdg:DataGridControl>
将数据填充到 xceed datagrid
DataGridCollectionView collectionView = new DataGridCollectionView(dt.DefaultView);
collectionView.GroupDescriptions.Add(new DataGridGroupDescription("filter"));
_dataGrid.ItemsSource = collectionView;
所有其他细节都很好,但不是复选框;谁能帮我解决。