C# 修改字体大小 样式的一些基础知识

时间:2022-07-02 01:05:42

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);

标签:

原文地址:https://www.cnblogs.com/qq-1585047819/p/11605109.html