C#做winform怎么把当前用户名显示在主页的状态栏里

2024-12-25 11:14:31
推荐回答(1个)
回答1:

在登录页面的button双击事件里写

Form2 form2 = new Form2();
form2.Username = this.textBox1.Text.Trim();
form2.Show();

form2为主页 后台声明 (public string Username="";)
Username 为你要的用户名,你用个label显示
this.label.text=Username;