如何根据 DataGridViewComboxColum 的选定索引更改更改 DataGridView 中特定列的值?
How to change the value of specific column in DataGridView based on selected index changed of DataGridViewComboxColum?
我的 windows 表单应用程序中有一个名为“cbxActionType”的 DataGridViewComboxColum,它在其项目集合中具有以下值。
• 信息
• 征求意见
• 审查……等等。
DataGridView1 有一个名为“NDays”的列,用于存储天数。如果“cbxActionType”选择的值更改为“For Information”,如何将 NDays 列值设置为 0(零天)?
DataGridview Combobox Column
private void dataGridView1_CellValueChanged(object sender, DataGridViewCellEventArgs e)
{
if (dataGridView1.CurrentRow.Cells["cbxActionType"].Value == "For Information")
{
dataGridView1.CurrentRow.Cells["NDays"].Value = 0;
}
}
我的 windows 表单应用程序中有一个名为“cbxActionType”的 DataGridViewComboxColum,它在其项目集合中具有以下值。 • 信息 • 征求意见 • 审查……等等。 DataGridView1 有一个名为“NDays”的列,用于存储天数。如果“cbxActionType”选择的值更改为“For Information”,如何将 NDays 列值设置为 0(零天)?
DataGridview Combobox Column
private void dataGridView1_CellValueChanged(object sender, DataGridViewCellEventArgs e)
{
if (dataGridView1.CurrentRow.Cells["cbxActionType"].Value == "For Information")
{
dataGridView1.CurrentRow.Cells["NDays"].Value = 0;
}
}