在C#里面怎么用代码改变字体格式、大小呢

2024年11月17日 16:51
有2个网友回答
网友(1):

C# label 吧,后台设置他的 属性就可以了
BackColor 背景色
Font 字体
等等。

网友(2):

this.label2.ForeColor = System.Drawing.Color.Red;//文字颜色
this.label2.Font = new System.Drawing.Font("黑体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));//文字字体,大小等