C#のwinformsでステータスバーに文字列を表示する。

コンピュータ

ステータスバーの使い方を確認します。

namespace StatuBarSample01;

public partial class Form1 : Form
{
    public Form1()
    {
        InitializeComponent();

        var statusbar = new StatusStrip
        {
            Parent = this,
        };
        var statusLabel1 = new ToolStripStatusLabel
        {
            Text = "ラベル1",
        };
        statusbar.Items.Add(statusLabel1);
        // セパレーター
        statusbar.Items.Add(new ToolStripSeparator());
        var statusLabel2 = new ToolStripStatusLabel
        {
            Text = "ラベル2",
        };
        statusbar.Items.Add(statusLabel2);
    }
}

実行するとフォームの下部にステータスバーが表示されます。

コメント