发布网友 发布时间:2023-08-01 23:17
共1个回答
热心网友 时间:2024-11-24 18:32
private void button1_Click(object sender, EventArgs e) { string fontFamily = "Arail "; float size = float.Parse("15 "); FontStyle fs1 = FontStyle.Regular; fs1 = FontStyle.Bold | FontStyle.Italic; Font f2 = new Font(fontFamily, size, fs1); label1.Font = f2; } 这样就可以了 我试过了