我希望程序检查是否键入了特定名称(例如'admin')。如果输入正确,我想继续另一个表单。我有这个代码,但它给我一个错误:
private void button1_Click(object sender, EventArgs e)
{
if (textBox1.Text = 'admin')
{
this.Hide();
// Show another form.
Form3 f2 = new Form3();
f2.ShowDialog(this);
}
}
答案 0 :(得分:2)
请使用此
if (textBox1.Text == "admin")
{
this.Hide();
// Show another form.
Form3 f2 = new Form3();
f2.ShowDialog(this);
}
答案 1 :(得分:1)
我想你想要
private void button1_Click(object sender, EventArgs e) {
if (textBox1.Text.Equals("admin"))
{
this.Hide();
// Show another form.
Form3 f2 = new Form3();
f2.ShowDialog(this);
}
}
答案 2 :(得分:0)
我不做Windows Forms开发,但可能是这行代码:
if (textBox1.Text = 'admin')
应该是
if (textBox1.Text == 'admin')