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.
我有一个这种格式的datagridview:
Days | one | two | three | four | five day1 |cell |cell |...ect day2 day3 day4 day5
我想要做的是改变 day1,day2..ect 单元格的背景颜色。当我在这里时,是否可以将这些单元格设为只读,以便任何输入从“一”行单元格 1 开始,依此类推,所以我不会覆盖天数。
如果您使用的是winforms,它应该是这样的
dataGridView1.Columns["Days "].ReadOnly = true;
你没有具体说明你是如何处理颜色的,所以我想我会提供一些可能有帮助的反馈。
更改列时,最好设置dataGridViewColumn.DefaultCellStyle而不是遍历列中的单元格并设置每个单元格的样式。
dataGridViewColumn.DefaultCellStyle