更改WPF数据网格中自动生成的列类型

本文关键字:自动生成 类型 网格 WPF 数据 数据网 更改 | 更新日期: 2023-09-27 18:04:24

底层数据类型为Char,值为"Y","N"。我如何使网格显示复选框列,同时保留绑定?我试着

private void grdScenarioList_AutoGeneratingColumn(object sender, DataGridAutoGeneratingColumnEventArgs e)
    {
        if (e.PropertyType == typeof(System.Char))
        {
            // Create a new column.
            DataGridCheckBoxColumn column = new DataGridCheckBoxColumn();
            column.Header = e.Column.Header;
            //column.Binding = (e.Column as DataGridCheckBoxColumn).Binding; 
            // Replace the auto-generated column with the templateColumn.
            e.Column = column;
        }

显示复选框列,但绑定丢失。如果我取消注释列。绑定行,我得到一个错误说(e.列作为DataGridCheckBoxColumn)。Binding为空。有办法吗?我有一个CharToBooleanConverter类,我使用在其他地方的复选框,但我不确定如何分配它在这里。

更改WPF数据网格中自动生成的列类型

找到解决方案

if (e.PropertyType == typeof(System.Char))
        {
            DataGridCheckBoxColumn col = new DataGridCheckBoxColumn();
            col.Header = e.Column.Header;
            Binding binding = new Binding(e.PropertyName);
            binding.Converter = new CharToBooleanConverter();
            col.Binding = binding;
            e.Column = col;
        }