目次: C# - Windows Formsでよく使うコントロールたち (Visual Studioなし環境向け) - Qiita
画面キャプチャ
テンプレ
using System;
using System.Drawing;
using System.Windows.Forms;
class StatusStripSample:Form
{
ToolStripStatusLabel statusLabel;
StatusStripSample()
{
var statusStrip = new StatusStrip();
Controls.Add(statusStrip);
statusStrip.Items.Add(statusLabel = new ToolStripStatusLabel(){
Text = "This is a sample.",
});
}
[STAThread]
static void Main()
{
Application.Run(new StatusStripSample());
}
}