1. 程式人生 > >在狀態列中顯示當前操作員

在狀態列中顯示當前操作員

實現效果:

  

知識運用:

  ToolStripStatusLabel控制元件的Text屬性

  public virtual string Text { get;set }

實現程式碼:

        private void Form1_Load(object sender, EventArgs e)
        {
            Login login = new Login();                  //建立窗體物件
            login.Owner = this;                         //設定Owner屬性
            login.ShowDialog();                         //顯示窗體
            if (Login.cmd == 0)                         //登陸失敗
                Application.Exit();                     //程式退出
            toolStripStatusLabel1.Text = "當前使用者: " + Login.user; //顯示當前使用者
        }