xaml コード:
<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>
データグリッドを超えてデータを埋める
DataGridCollectionView collectionView = new DataGridCollectionView(dt.DefaultView);
collectionView.GroupDescriptions.Add(new DataGridGroupDescription("filter"));
_dataGrid.ItemsSource = collectionView;
他のすべての詳細は問題なくバインドされますが、チェックボックスはバインドされません。誰かが解決するのを手伝ってくれますか?