当前位置 : 主页 > 大数据 > 区块链 >

在状态栏中显示当前操作员

来源:互联网 收集:自由互联 发布时间:2021-06-22
实现效果: 知识运用: ToolStripStatusLabel控件的Text属性 public virtual string Text { get;set } 实现代码: private void Form1_Load(object sender, EventArgs e) { Login login = new Login(); //创建窗体对象 login.Owner

实现效果:

  

知识运用:

  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; //显示当前用户
        }
网友评论