我有一个包含from MainPageLocatars import *
print param1
的Windows窗体,它动态绑定到DataGridView
。在DataSet
事件的表单中,我正在更改Button.Click
外观。
我尝试了下面的代码,但它并没有影响DataGridView.Font
。只有标题部分被更改。
请推荐我在编码方面做错了。
我的代码
DataGridView
答案 0 :(得分:1)
DataGridViewCellStyle style = new DataGridViewCellStyle();
style.Font = new Font(dataGridView.Font, FontStyle.Bold);
dataGridView.Rows[0].DefaultCellStyle = style;
只是在另一个网站上看到了它。