C# dataGridView控件 字体配置问题 字体大小 修改字体

VS-C++ 系列:所有相关C++文章链接.
VS-C# 系列:所有相关C#文章链接.
bat 系列:所有相关bat文章链接.
OpenCV 系列:所有相关OpenCV文章链接.


AD 系列:所有相关文章链接
Keil 系列:所有相关文章链接
Arduino 系列:所有相关Arduino文章链接


Git SVN 系列:所有相关Git SVN文章链接


Linux 系列:所有相关文章链接


所有内容均以最小系统调试成功;逐步提供低分源码工程下载
保证每行代码都经过验证!
如有疑惑,欢迎留言,看见即回;祝好__by Dxg_LC

目录:Dxg_C# 开发小技巧整理集合

    • 1、
    • Dxg-原创出品,如需转载,请注明出处;

序言:
1、以上链接为方便整理查看资料用;伴随博文发布更新,如果有不正确处,感谢指正
2、因本人能力有限若有不正确之处或者相关超链接失效,请于相关文章内提醒@博主;灰常感谢
3、友情提醒1,勿要《一支烟 + 一杯茶 == 一坐一下午》 身体重要,革命本钱;
4、友情提醒2,多喝热水;
5、友情提醒3,听媳妇话+多点时间陪家人;
在这里插入图片描述

1、

//
// 摘要:
//     Specifies style information applied to text.
[Flags]
public enum FontStyle
{
   //
   // 摘要:
   //     Normal text.常规
   Regular = 0,
   //
   // 摘要:
   //     Bold text.加粗
   Bold = 1,
   //
   // 摘要:
   //     Italic text.斜体
   Italic = 2,
   //
   // 摘要:
   //     Underlined text.下划线
   Underline = 4,
   //
   // 摘要:
   //     Text with a line through the middle.删除线
   Strikeout = 8
}


int _FontWidth = 9;//[默认是9] 字体宽度[px]

//行单元格[不含头]
dataGridView1.RowsDefaultCellStyle.Font = new Font
   ("宋体", _FontWidth, FontStyle.Regular);
	
//行头单元格
dataGridView1.RowHeadersDefaultCellStyle.Font = new Font
   ("宋体", _FontWidth, FontStyle.Regular);
//列头单元格
dataGridView1.ColumnHeadersDefaultCellStyle.Font = new Font
   ("宋体", _FontWidth, FontStyle.Regular);

Dxg-原创出品,如需转载,请注明出处;

欢迎收藏,点赞;"一键三联"走起,LOL
C# dataGridView控件 字体配置问题 字体大小 修改字体_第1张图片

你可能感兴趣的:(C#,c#)