码迷,mamicode.com
首页 > 其他好文 > 详细

程序运行时智能增减控件

时间:2018-12-30 22:15:13      阅读:213      评论:0      收藏:0      [点我收藏+]

标签:ble   运行时   text   .sh   hid   img   event   orm   tar   

实现效果:

  技术分享图片

知识运用:

  Button控件的Visible属性

  Form窗体的Show方法和Hide方法

实现代码:

        Frm frm = new Frm();
        private void button1_Click(object sender, EventArgs e)
        {
            if (txt_user.Text == "" || txt_pwd.Text == "")
                return;
            else if (txt_user.Text == "admin" && txt_pwd.Text == "admin")
            {
                frm.Text += "   "+"登陆用户:"+txt_user.Text;
                frm.Show();
                this.Hide();
            }
            else if (txt_user.Text == "user" && txt_pwd.Text == "user")
            {
                frm.Text += "   " + "登陆用户:" + txt_user.Text;
                frm.Show();
                frm.button3.Visible = false;
                frm.button4.Visible = false;
                this.Hide();
            }
            else 
            {
                MessageBox.Show("用户名或密码输有误");
                txt_user.Text = "";
                txt_pwd.Text = "";
                txt_user.Focus();
            }
        }

 

程序运行时智能增减控件

标签:ble   运行时   text   .sh   hid   img   event   orm   tar   

原文地址:https://www.cnblogs.com/feiyucha/p/10200618.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!