在我的C#窗体中,我有一个列按钮,我想点击我得到gridview的一些特定列
以下是代码:
private void attack_History_ViewDataGridView_CellContentClick(object sender, DataGridViewCellEventArgs e)
{
attack_History_ViewDataGridView.Rows(e.RowIndex).Cells(0);
}
不幸的是,在Rows
字中它抱怨:
Non-invocable member 'datagirdview.Rows' cannot be used like a method
答案 0 :(得分:1)
如果要访问行集合中的项目,则必须使用索引器,该索引器使用方括号([]
)完成。同样适用于Cells
:
attack_History_ViewDataGridView.Rows[e.RowIndex].Cells[0];