ステータスバーの使い方を確認します。
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);
}
}
コメント