StatusStrip(ステータスバー)の使い方

StatusStrip(ステータスバー)を使うには
StatusStripコントロールをFormにドロップして配置します。

status

これだけで、Form上でステータスバーが表示されます。
上の画像でもわかるように▼ボタンをクリックすると
ステータスバーに追加可能なコントロールの一覧が表示されます。

ここでは簡単なStatusLabelコントロールを選んでみます。

配置されたButtonをクリックされたら
StatusLabelのテキストを変更するサンプルコードは次のようになります。

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;

namespace WindowsFormsApplication1
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            this.toolStripStatusLabel1.Text = "ボタンが押されました";
        }
    }
}

status_button

コメントを残す

メールアドレスが公開されることはありません。 * が付いている欄は必須項目です

次のHTML タグと属性が使えます: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>

日本語が含まれない投稿は無視されますのでご注意ください。(スパム対策)