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

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

与java它可以通过调用必要的参数调用字体构造函数轻松完成。

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); 

或者,如果你和表格在同一个class上,那么只需要这样做:

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

构造函数需要不同的参数(所以select你的毒药)。 喜欢这个:

 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) 

在这里引用

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

尝试字体构造函数(string,单)

 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 System.Drawing.Font – 获取可用的大小和样式

使用这一个仅更改字体大小不是字体的名称

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

这应该做(大胆的);

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

您也可以创build一个variables,然后将其分配给一个文本。 这很酷,因为你可以分配两个或更多的文本。

要分配一个variables做到这一点

 public partial class Sayfa1 : Form Font Normal = new Font("Segoe UI", 9, FontStyle.Bold); public Sayfa1() 

这个variables还没有被分配给任何文本。要做到这一点,写下文字的名字(Look proporties – >(Name))然后写下“.Font”,然后调用你的字体variables的名字。

 lupusToolStripMenuItem.Font = Normal; 

现在你有一个文本分配给一个正常的字体。 我希望我能帮上忙。