これは、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)
ここで参照
これを使用して、フォントの名前ではなく、フォントサイズのみを変更します
label1.Font = new System.Drawing.Font(label1.Font.Name, 24F);
フォントクラスを使用して、コントロールのフォントとスタイルを設定します。
フォントコンストラクターを試す(文字列、単一)
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);
インストールされたフォントを取得するには、これを参照してください-.NETSystem.Drawing.Font-利用可能なサイズとスタイルを取得します
これでうまくいくはずです(太字でも)。
label1.Font = new Font("Serif", 24,FontStyle.Bold);
変数を作成して、それをテキストに割り当てることもできます。2つ以上のテキストを割り当てることができるのでかっこいいです。
変数を割り当てるには、それを行います
public partial class Sayfa1 : Form
Font Normal = new Font("Segoe UI", 9, FontStyle.Bold);
public Sayfa1()
この変数はまだどのテキストにも割り当てられていません。これを行うには、テキストの名前を記述し(Look proporties->(Name))、「。Font」と記述してから、フォント変数の名前を呼び出します。
lupusToolStripMenuItem.Font = Normal;
これで、通常のフォントに割り当てられたテキストができました。お役に立てば幸いです。
プロパティパネルのlabelプロパティを使用して変更できます。 このスクリーンショットはその例です