如何更改datagridview中列的颜色?

发布于 2024-12-05 18:02:53 字数 132 浏览 1 评论 0原文

我有一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

债姬 2024-12-12 18:02:53

尝试为所选列设置 DefaultCellStyle 属性。

编辑:

grid.Columns["NameOfColumn"].DefaultCellStyle.ForeColor = Color.Gray;

Try setting the DefaultCellStyle property for the selected columns.

Edit:

grid.Columns["NameOfColumn"].DefaultCellStyle.ForeColor = Color.Gray;
盗心人 2024-12-12 18:02:53

只需更改 DataGridViewColumn 对象的样式,

myGrid.Columns["myColumn"].DefaultCellStyle.BackColor = Color.Red;

just change the style for the DataGridViewColumn object,

myGrid.Columns["myColumn"].DefaultCellStyle.BackColor = Color.Red;
阪姬 2024-12-12 18:02:53

您可以使用 DefaultCellStyle 属性。

DataGridView1.Columns[0].DefaultCellStyle.BackColor = Color.Gray;

You can specify the cell background colours for a column like so using the DefaultCellStyle property of a DataGridViewColumn.

DataGridView1.Columns[0].DefaultCellStyle.BackColor = Color.Gray;
浮世清欢 2024-12-12 18:02:53
        DataGridViewColumn firstColumn = dataGridView.Columns[0];
        DataGridViewCellStyle cellStyle = new DataGridViewCellStyle();
        cellStyle.BackColor = Color.Grey;

        firstColumn.DefaultCellStyle = cellStyle;
        DataGridViewColumn firstColumn = dataGridView.Columns[0];
        DataGridViewCellStyle cellStyle = new DataGridViewCellStyle();
        cellStyle.BackColor = Color.Grey;

        firstColumn.DefaultCellStyle = cellStyle;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文