gpt4 book ai didi

c# - 如何从 datagridview 组合框获取值(value)?

转载 作者:太空宇宙 更新时间:2023-11-03 20:35:56 29 4
gpt4 key购买 nike

如何在更改选定值后从 datagridview 组合框中获取值?

最佳答案

您可以使用:

var value = DataGridView.Rows[0].Cells[0].Value

注意:您需要提供正确的行和单元格编号。

或者如果它绑定(bind)到像 ListItem 这样的对象,你可以做这样的事情

string value = DataGridView.Rows[RowIndex].Cells[ColumnIndex].Value.ToString();

if DataGridView.Rows[RowIndex].Cells[ColumnIndex] is DataGridViewComboBoxCell && !string.IsNullOrEmpty(value))
{
List<ListItem> items = ((DataGridViewComboBoxCellDataGridView.Rows[RowIndex].Cells[e.ColumnIndex]).Items.Cast<ListItem>().ToList();
ListItem item = items.Find(i => i.Value.Equals(value));
}

关于c# - 如何从 datagridview 组合框获取值(value)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5041725/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com