从对象的集合属性自动创建DataGridViewComboBoxCell

本文关键字:创建 DataGridViewComboBoxCell 属性 对象 集合 | 更新日期: 2023-09-27 18:14:31

使用WinForms,我试图编写一个方法来检查绑定到DataGridView中的一行的数据项是否包含IList作为属性,然后自动将DataGridViewTextBoxCell转换为DataGridViewComboBoxCell绑定列表作为数据源。目标是创建一个下拉菜单,每行都有不同的值,这取决于找到的对象的list属性中的元素。例如,在第一行中,下拉列表可以有3个类型为ObjA的对象作为选项,第二行可以有5个类型为ObjC的对象,以此类推。

这是我的:

private void dgv_DataBindingComplete(object sender, DataGridViewBindingCompleteEventArgs e)
{
    foreach (DataGridViewRow row in dgv.Rows)
    {
        object obj = row.DataBoundItem;
        if (obj != null)
        {
            IEnumerable listProperties = obj.GetType().GetProperties().Where(p => p.GetValue(obj) is IList);
            foreach (PropertyInfo list in listProperties)
            {
                DataGridViewComboBoxCell cell = new DataGridViewComboBoxCell();
                IList source = (IList)list.GetValue(obj, null);
                cell.DataSource = source;
                cell.ValueMember = "id";
                cell.DisplayMember = "name";
                cell.ValueType = source.GetType().GetProperty("Item").PropertyType;
                cell.Value = source[0].GetType().GetProperty("id").GetValue(source[0]);
                (row.Cells[list.Name]) = cell;
            }
        }
    }
}

这是将初始数据绑定到DataGridView的代码:

        IBindingList source = new BindingList<Models.InputValue>(datasource);
        inputsDgv.AutoGenerateColumns = true;
        inputsDgv.AllowUserToAddRows = false;
        inputsDgv.AllowUserToDeleteRows = false;
        inputsDgv.DataSource = source;

问题:我得到一个"DataGridViewComboBoxCell值是无效的"错误时加载DataGridView。我注意到在运行(row.Cells[list.Name]) = cell;行之后,cell.ValueTypeSystem.Collections.Generic.IList1[[roco.Models.ISnapshots]]更改为System.Int32。我想那一定是问题所在。

有谁知道如何解决这个错误吗?

谢谢!

注:: row.DataBoundItem的类型是InputValue, list属性是ProjectionSnapshot对象的集合

public class InputValue : IValues
{
    private int _id;
    public int id { get { return _id; } }
    private IList<ISnapshots> _snapshots;
    public IList<ISnapshots> snapshots
    {
        get { return _snapshots; }
        set { _snapshots = value; }
    }
}
public class ProjectionSnapshot : ISnapshots
{
    private int _id;
    public int id { get { return _id; } }
    private string _name;
    public string name
    {
        get { return _name; }
        set
        {
            if (value.Length > 255)
                Console.WriteLine("Error! SKU snapshot name must be less than 256 characters!");
            else
                _name = value;
        }
    }
}
public interface ISnapshots
{
    int id { get; }
    string name { get; set; }
}

从对象的集合属性自动创建DataGridViewComboBoxCell

TL;DR:跳到解决方案部分。


可以将DataGridViewTextBoxCell更改为DataGridViewComboBoxCell,但如果组合框值的类型与该列的ValueType设置的类型不同,则会导致问题。这是因为,正如@Loathing和@Mohit Shrivastava所提到的,DataGridViewColumns与相应的Cell类紧密耦合。

在阅读@Loathing的代码示例后,我尝试在更改DataGridViewTextBoxCell之前将列的ValueType设置为typeof(Object)。这不起作用,因为当您将对象绑定到DataGridView并使用AutoGenerateColumns时,有一种机制可以自动设置列的ValueType以反映绑定对象中的属性类型。如果您生成自己的列,并将列的DataPropertyName设置为对象属性名称,则同样如此。


<

解决方案/strong>:

1)生成自己的列,将对象属性映射到DataGridViewTextBoxCell而不是DataGridViewComboBoxCell:

注::我不再检查illist,而是检查任何IEnumerable(更多详细信息请参阅此答案:https://stackoverflow.com/a/9434921/5374324)

public void loadGrid<T>(IList<T> datasource)
{
    generateDataGridViewColumns<T>(datasource);
    IBindingList source = new BindingList<T>(datasource);
    inputsDgv.AutoGenerateColumns = false;
    inputsDgv.AllowUserToAddRows = false;
    inputsDgv.AllowUserToDeleteRows = false;
    inputsDgv.DataSource = source;
}
private void generateDataGridViewColumns<T>(IList<T> datasource)
{
    dgv.Columns.Clear();
    if (datasource != null)
    {
        foreach (PropertyInfo property in typeof(T).GetProperties())
        {
            DataGridViewColumn col;
            var displayNameObj = property.GetCustomAttributes(typeof(DisplayNameAttribute), true).Cast<DisplayNameAttribute>().FirstOrDefault();
            string displayName = (displayNameObj == null) ? property.Name : displayNameObj.DisplayName;
            if (property.PropertyType.GetInterface(typeof(IEnumerable<>).FullName) != null && property.PropertyType != typeof(string))
            {
                col = new DataGridViewComboBoxColumn();
                (col as DataGridViewComboBoxColumn).AutoComplete = false;
                (col as DataGridViewComboBoxColumn).ValueType = typeof(Object);
            }
            else
            {
                col = new DataGridViewTextBoxColumn() { DataPropertyName = property.Name };
            }
            col.Name = property.Name;
            col.HeaderText = displayName;
            ReadOnlyAttribute attrib = Attribute.GetCustomAttribute(property, typeof(ReadOnlyAttribute)) as ReadOnlyAttribute;
            col.ReadOnly = (!property.CanWrite || (attrib != null && attrib.IsReadOnly));
            inputsDgv.Columns.Add(col);
        }
    }
}

2)使用DataBindingComplete事件填充组合框:

private void dgv_DataBindingComplete(object sender, DataGridViewBindingCompleteEventArgs e)
{
    foreach (DataGridViewRow row in dgv.Rows)
    {
        object obj = row.DataBoundItem;
        if (obj != null)
        {
            IEnumerable listProperties = obj.GetType().GetProperties().Where(p => p.GetValue(obj) is IList);
            foreach (PropertyInfo list in listProperties)
            {
                IList source = (IList)list.GetValue(obj, null);
                DataGridViewComboBoxCell cell = (row.Cells[list.Name] as DataGridViewComboBoxCell);
                cell.DataSource = source;
                cell.ValueType = source.GetType().GetProperty("Item").PropertyType;
                ValueMember valueMember = (ValueMember)obj.GetType().GetProperty(list.Name).GetCustomAttribute(typeof(ValueMember));
                DisplayMember displayMember = (DisplayMember)obj.GetType().GetProperty(list.Name).GetCustomAttribute(typeof(DisplayMember));
                if(valueMember != null && displayMember != null)
                {
                    cell.ValueMember = valueMember.Value;
                    cell.DisplayMember = displayMember.Value;
                }
                cell.Value = source[0].GetType().GetProperty("id").GetValue(source[0]);
            }
        }
    }
}
3)创建ValueMember和DisplayMember属性类:

[System.AttributeUsage(System.AttributeTargets.Property)]
public class ValueMember : System.Attribute
{
    public string Value { get; private set; }
    public ValueMember(string valueMember)
    {
        this.Value = valueMember;
    }
}
[System.AttributeUsage(System.AttributeTargets.Property)]
public class DisplayMember : System.Attribute
{
    public string Value { get; private set; }
    public DisplayMember(string displayMember)
    {
        this.Value = displayMember;
    }
}
4)使用属性:

public class InputValue
{
    public string id{ get; set; }
    public string name{ get; set; }
    [DisplayName("Values")]
    [ValueMember("id")]
    [DisplayMember("name")]
    public IList<IValue> values{ get; set; }
}

正如@Loathing 所建议的那样,DataGridViewColumns与相应的Cell类紧密耦合。不能在文本列中使用组合单元格。

你可以使用GridView,它用于在列中安排数据,并为ListView添加布局和设计支持。GridView被用作ListView的补充控件,以提供样式和布局。GridView没有自己的控件相关属性,比如背景和前景颜色、字体属性、大小和位置。容器ListView用于提供所有与控件相关的属性。阅读更多关于WPF中的GridView

如果您希望在下拉列表中基于选定的行具有不同的值,那么您将需要使用CellBeginEdit事件并更改组合框编辑控件的DataSource

请看下面的示例回答:如何为每个记录分配DataGridViewComboBox的不同数据源?