我需要将datagridview中的每个单元格绑定到C#中的对象。 有没有人可以帮助我?
我的对象看起来像 -
public DataCellInfo(int row, int col, Color backColor)
{
CoordinateCell = new Coordinate(row, col);
BackColor = backColor;
IsFill = false;
}
public Coordinate CoordinateCell { get; set; }
public Color BackColor { get; set; }
public bool IsFill { get; set; }
我尝试了每个单元格 -
gameDataView.Rows[row].Cells[col] = new DataCellInfo(row, col, gameDataView[col, row].Style.BackColor);
但它似乎是错误的。
TNX