这是用C#更改字体大小的最简单方法。

使用Java,可以通过调用带有必要参数的Font构造函数来轻松完成所有操作。

JLabel lab  = new JLabel("Font Bold at 24");
lab.setFont(new Font("Serif", Font.BOLD, 24));

最佳答案

也许是这样的:

yourformName.YourLabel.Font = new Font("Arial", 24,FontStyle.Bold);

或者,如果您与表单在同一类中,则只需执行以下操作:
YourLabel.Font = new Font("Arial", 24,FontStyle.Bold);

构造函数采用不同的参数(因此请选择毒药)。像这样:
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)

引用here

关于c# - 更改字体和字体大小的最简单方法,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/10173147/

10-12 20:45