我是C#的初学者。我正在研究Datagridview, Gridview的数据来自SQL表,我制作了一个ComboboxColumn并在其中添加了一些值。 我想如果我从Dropdown of ComboboxColumn中选择任何值,它应该只显示在一个指定列而不反映其他列...我正在尝试下面的代码。这段代码正在运行,但是当我更改其他列的值时,一个指定的列值也在改变,我想要的只能用ComboboxColumn来完成。
private void ViewDataGrid_CellValueChanged(object sender, DataGridViewCellEventArgs e)
{
try
{
ViewDataGrid.Rows[e.RowIndex].Cells["Arrival_State"].Value =
ViewDataGrid.Rows[e.RowIndex].Cells[e.ColumnIndex].Value;
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
}
答案 0 :(得分:0)
在更改Arrival_State列的值之前,应检查更改的列是否为ComboBoxColumn。请参阅下面的代码
我添加了两个 if 块,使用一个你喜欢的外观,而不是两者。
private void ViewDataGrid_CellValueChanged(object sender, DataGridViewCellEventArgs e)
{
try
{
// Use this method if you want to find/specify the column by its index number
// Replace 1 with the index of the ComboBoxColumn
if (e.ColumnIndex == 1)
{
ViewDataGrid.Rows[e.RowIndex].Cells["Arrival_State"].Value =
ViewDataGrid.Rows[e.RowIndex].Cells[e.ColumnIndex].Value;
}
// Use this method if you want to find/specify the column by its name
// I prefer this method just in case the order changes
if (ViewDataGrid.Columns[e.ColumnIndex].Name == "ComboBoxColumnName")
{
ViewDataGrid.Rows[e.RowIndex].Cells["Arrival_State"].Value =
ViewDataGrid.Rows[e.RowIndex].Cells[e.ColumnIndex].Value;
}
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
}