Có lẽ một cái gì đó như thế này:
yourformName.YourLabel.Font = new Font("Arial", 24,FontStyle.Bold);
Hoặc nếu bạn đang ở trong lớp học tương tự như các hình thức sau đó chỉ cần làm điều này:
YourLabel.Font = new Font("Arial", 24,FontStyle.Bold);
Các nhà xây dựng có các thông số khác nhau (để chọn chất độc của bạn). Như thế này:
Font(Font, FontStyle)
Font(FontFamily, Single)
Font(String, Single)
Font(FontFamily, Single, FontStyle)
Font(FontFamily, Single, GraphicsUnit)
Font(String, Single, FontStyle)
Font(String, Single, GraphicsUnit)
Font(FontFamily, Single, FontStyle, GraphicsUnit)
Font(String, Single, FontStyle, GraphicsUnit)
Font(FontFamily, Single, FontStyle, GraphicsUnit, Byte)
Font(String, Single, FontStyle, GraphicsUnit, Byte)
Font(FontFamily, Single, FontStyle, GraphicsUnit, Byte, Boolean)
Font(String, Single, FontStyle, GraphicsUnit, Byte, Boolean)
Reference here