C# 更改字体和大小

string fontName = "宋体"; //字体

float fontSize = 20; //大小

txtNote.Font = new Font(fontName, fontSize);

你可能感兴趣的:(C#)