更改字体和字体大小的最简单方法

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

使用 java,通过调用带有必要参数的 Font 构造函数,这一切都可以很容易地完成。

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

也许是这样的:

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)

参考资料 给你

这应该可以做到(也很大胆) ;

label1.Font = new Font("Serif", 24,FontStyle.Bold);

使用 字体课设置控件的字体和样式。

试试 字体构造函数(字符串,单个)

Label lab  = new Label();
lab.Text ="Font Bold at 24";
lab.Font = new Font("Arial", 20);

或者

lab.Font = new Font(FontFamily.GenericSansSerif,
12.0F, FontStyle.Bold);

要安装字体请参考以下 -.NET 系统。绘图。字体-获取可用的大小和样式

使用此选项只能更改字体大小,而不能更改字体名称

label1.Font = new System.Drawing.Font(label1.Font.Name, 24F);

您还可以创建一个变量,然后为文本分配它。它很酷,因为你可以分配它两个或两个以上的文本。

要赋值一个变量,请执行

public partial class Sayfa1 : Form


Font Normal = new Font("Segoe UI", 9, FontStyle.Bold);


public Sayfa1()

这个变量还没有分配给任何文本。要这样做,写下文本的名称(查看比例-> (名称)) ,然后写”。然后调用字体变量的名称。

lupusToolStripMenuItem.Font = Normal;

现在你有一个文本分配到一个正常的字体。我希望我可以提供帮助。

您可以在属性面板中使用 label 属性更改该属性。 这个屏幕截图就是一个例子