Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 Gridview 中有 20 行和 10 列数据。 我必须设置特定的单元格背景颜色灰色,如 [1 行][1 列],[3 行][1 列]。 我写了这行
code.grdsellthru.Rows[3].BackColor = System.Drawing.Color.Gray;
但颜色正在应用总行。 我只需要应用第 3 行第 1 列。
颜色正在应用总行。我只需要应用第 3 行 1 列
您需要Cell与 Row 一起指定,例如:
Cell
grdsellthru.Rows[3].Cells[1].BackColor = System.Drawing.Color.Gray;