[求助]这些代码怎么排列啊???
private void button1_Click(object sender, System.EventArgs e)
{
if(textBox1.Text=="" || textBox2.Text=="")
{
MessageBox.Show("用户名或密码不能为空!");
if (textBox1.Text=="123" && textBox2.Text=="123")
{
Form2 f2=new Form2();
f2.Show();
this.Hide();
}
}
else
{
MessageBox.Show("输入的用户名或密码错误!");
}
}