c# – 如何根据DatagridView中的选定单元格获取行集合
发布时间:2020-12-16 00:02:34 所属栏目:百科 来源:网络整理
导读:我在 Windows窗体上有一个DatagridView控件.它的selectionMode属性设置为CellSelect. 我想基于选定的单元格操作DatagridViewRow. DataGridView控件绑定到DataSource. 如何根据选定的单元格获取Row集合? 解决方法 ListDataGridViewRow rowCollection = new L
我在
Windows窗体上有一个DatagridView控件.它的selectionMode属性设置为CellSelect.
我想基于选定的单元格操作DatagridViewRow. DataGridView控件绑定到DataSource. 如何根据选定的单元格获取Row集合? 解决方法List<DataGridViewRow> rowCollection = new List<DataGridViewRow>(); foreach(DataGridViewCell cell in dataGridView.SelectedCells) { rowCollection.Add(dataGridView.Rows[cell.RowIndex]; } (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |