DataGridView Default Error
The following error may be raised when creating a new row that contains a DataGridViewComboBox
The cause of this error is that when adding a new row with default value, its ValueMember is not specified.
In order to solve this problem, you can use the following code:
![](https://images.cnblogs.com/OutliningIndicators/ContractedBlock.gif)
public struct IndexField
{
public IndexField(int id, string name)
{
ID = id;
Name = name;
}
public int ID { get; private set; }
public string Name { get; private set; }
}
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
IndexField[] indexFields = new IndexField[]
{
new IndexField(1, "p1"),
new IndexField(2, "p2"),
new IndexField(3, "p3")
};
Populate(indexFields);
}
public void Populate(IndexField[] indexFields)
{
DataGridViewComboBoxColumn indexFieldColumn = new DataGridViewComboBoxColumn()
{
HeaderText = "Index Fields"
};
indexFieldColumn.DataSource = indexFields;
indexFieldColumn.DisplayMember = nameof(IndexField.Name);
indexFieldColumn.ValueMember = nameof(IndexField.ID);
dataGridView1.Columns.Add(indexFieldColumn);
for (int i = 0; i < 5; i++)
{
dataGridView1.Rows.Add(indexFields[0].ID, indexFields[0].Name);
// Will cause error:dataGridView1.Rows.Add(indexFields[0].Name);
}
dataGridView1.AllowUserToAddRows = false;
}
}
In addition, you can solve this problem in another way. You can subscribe the DataError event of the DataGridView when the form is initialized.
The sample code for this solution is as follows:
![](https://images.cnblogs.com/OutliningIndicators/ContractedBlock.gif)
public Form1()
{
InitializeComponent();
dataGridView1.DataError += delegate (object sender, DataGridViewDataErrorEventArgs e) { };
}
It will also go wrong if you create a new line in the following way.
![](https://images.cnblogs.com/OutliningIndicators/ContractedBlock.gif)
for (int i = 0; i < 5; i++)
{
DataGridViewRow row = new DataGridViewRow();
DataGridViewComboBoxCell comboxcell = new DataGridViewComboBoxCell();
comboxcell.DataSource = indexFields;
comboxcell.DisplayMember = "Name";
comboxcell.ValueMember = "ID";
row.Cells.Add(comboxcell);
dataGridView1.Rows.Add(row);
dataGridView1.Rows[i].Cells[0].Value = "p1";
}
dataGridView1.AllowUserToAddRows = false;
In this case, you can also subscribe the DataError event of the DataGridView when the form is initialized.
![](https://images.cnblogs.com/OutliningIndicators/ContractedBlock.gif)
public Form1()
{
InitializeComponent();
dataGridView1.DataError += delegate (object sender, DataGridViewDataErrorEventArgs e) { };
}
Caution: When setting the DataGridViewComboBoxCell.Value, note that the value set must be the value contained in the DataGridViewComboBoxCell.Item collection, otherwise an error occurs after the setting is completed.
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】凌霞软件回馈社区,博客园 & 1Panel & Halo 联合会员上线
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】博客园社区专享云产品让利特惠,阿里云新客6.5折上折
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步