我正在开发一个用 C# 编写的 Windows 窗体应用程序。
我发现有人建议如何List<>
从DataGridView
控件创建一个,但我需要更多关于如何提取单元格值的帮助。
这是给出的代码;假设dataGridView1
areName
和中的两列Address
。
如何构建List<ProjList>
对象?
foreach (DataGridViewRow dr in dataGridView1.Rows)
{
ProjList = new List<ProjectMasterRec>();
foreach (DataGridViewCell dc in dr.Cells)
{
// build out MyItem
// based on DataGridViewCell.OwningColumn and DataGridViewCell.Value
// how do we code this?
}
ProjList.Add(item);
}