C# 修改字体大小 样式的一些基础知识
2021-02-01 09:13
标签:没有 知识 size 修改字体 样式 font 文本 bsp box txtName 是Textbox文本框 1 单纯修改字体 txtName.Font = new Font("仿宋", txtName.Font.Size, txtName.Font.Style); 2 单纯修改字体样式 txtName.Font = new Font(txtName.Font, txtName.Font.Style | FontStyle.Bold); (在原有样式中加) ^(与是本来有该种样式的变为没有); 3 初始话字体 txtName.Font = new Font("宋体",20,FontStyle.Regular); C# 修改字体大小 样式的一些基础知识 标签:没有 知识 size 修改字体 样式 font 文本 bsp box 原文地址:https://www.cnblogs.com/qq-1585047819/p/11605109.html
上一篇:C#中的类型转换
下一篇:AcWing 836. 合并集合
文章标题:C# 修改字体大小 样式的一些基础知识
文章链接:http://soscw.com/index.php/essay/49415.html