字体不会动态更改

时间:2016-12-08 04:33:28

标签: c# winforms datagridview

我有一个包含from MainPageLocatars import * print param1 的Windows窗体,它动态绑定到DataGridView。在DataSet事件的表单中,我正在更改Button.Click外观。

我尝试了下面的代码,但它并没有影响DataGridView.Font。只有标题部分被更改。

请推荐我在编码方面做错了。

我的代码

DataGridView

1 个答案:

答案 0 :(得分:1)

DataGridViewCellStyle style = new DataGridViewCellStyle();
style.Font = new Font(dataGridView.Font, FontStyle.Bold);
dataGridView.Rows[0].DefaultCellStyle = style;

只是在另一个网站上看到了它。