如何更改datagridview中列的颜色?
我有一个 DataGridview,并且我将某些列设置为只读以用于数据输入目的。当我这样做时,该列保持正常的白色(尽管它不允许进入)。如何将列设置为灰色?我看过很多关于如何为行着色的示例,但没有看到列的示例。
如何使只读列显示为灰色?
I have a DataGridview, and I'm setting some of the columns to readonly for data entry purposes. When I do that, the column stays the normal white (although it does not allow entry). How can I color the column gray? I've seen lots of samples on how to color rows, but not columns.
How can I make the readonly columns look gray?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
尝试为所选列设置 DefaultCellStyle 属性。
编辑:
Try setting the DefaultCellStyle property for the selected columns.
Edit:
只需更改 DataGridViewColumn 对象的样式,
just change the style for the DataGridViewColumn object,
您可以使用 DefaultCellStyle 属性。
You can specify the cell background colours for a column like so using the DefaultCellStyle property of a DataGridViewColumn.