嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):78630559
本次赞助数额为: 4 元微信扫码支付:4 元
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
登录统计系统
private void Form1_Load(object sender, EventArgs e)
{
toolStripStatusLabel3.Text = DateTime.Now.ToString();
menuStrip1.Visible = false;
toolStrip1.Visible = false;
ToolStripMenuItemclose.Enabled = false;
}
private void Enter_Click(object sender, EventArgs e)
{
if(textBoxN.Text=="519606"&&textBoxP.Text=="519606")
{
MessageBox.Show("登录成功","登录提示");
panel1.Visible = false;
toolStripStatusLabel1.Text = "登录成功,欢迎使用,数据珍贵,请及时保存";
menuStrip1.Visible = true;
toolStripMenuItemYC.Enabled = false;
}
else
MessageBox.Show("输入用户名或密码错误!!!");
textBoxN.Clear();
textBoxP.Clear();
textBoxN.Focus();
}