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

2024-11-17 16:51:20
推荐回答(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)));//文字字体,大小等