「你能教我如何禁用按鈕,直到所有文本框不爲空」。 以我的設計形式命名登錄。 我有2個文本框和2個按鈕 我要禁用按鈕,直到所有文本框不爲空如何禁用提交按鈕,直到在c#中的文本框不是空的?
thnks幫我 所以我的繼承人的代碼在C#中的Windows應用程序的形式
SqlConnection con = new SqlConnection(@"Data Source=ADMIN-\MSSQLSERVERR;Initial Catalog=Admin;Integrated Security=True");
private void button1_Click(object sender, EventArgs e)
{
SqlDataAdapter sda = new SqlDataAdapter("Select USN From Admin where USN ='" + textBox1.Text + "'and Password ='" + textBox2.Text + "'", con);
DataTable dt = new DataTable();
sda.Fill(dt);
if (dt.Rows.Count == 1)
{
this.Hide();
Admin_Panel aa = new Admin_Panel(dt.Rows[0][0].ToString());
aa.Show();
}
else
{
MessageBox.Show("Please check your username and password");
textBox1.SelectAll();
textBox2.Text = "";
}
button1.Enabled = !string.IsNullOrWhiteSpace(textBox1.Text);
}
private void button2_Click(object sender, EventArgs e)
{
SqlDataAdapter sda = new SqlDataAdapter("Select USN From Admin where USN ='" + textBox1.Text + "'and Password ='" + textBox2.Text + "'", con);
DataTable dt = new DataTable();
sda.Fill(dt);
if (dt.Rows.Count == 1)
{
this.Hide();
Student aa = new Student(dt.Rows[0][0].ToString());
aa.Show();
}
else
{
MessageBox.Show("Please check your username and password");
textBox1.SelectAll();
textBox2.Text = "";
}
button2.Enabled = !string.IsNullOrWhiteSpace(textBox1.Text);
}
private void textBox1_KeyPress(object sender, KeyPressEventArgs e)
{
if (!char.IsControl(e.KeyChar) && !char.IsDigit(e.KeyChar))
e.Handled = true;
base.OnKeyPress(e);
}
我嘗試一切我知道,但它不工作:( 我也試試這個button1.Enabled = string.IsNullOrWhiteSpace(textBox1.Text!); 但是當我已經把在文本框USN和密碼的2個按鈕沒有啓用
你的意思是你想只啓用按鈕如果用戶名和密碼輸入文本框是嗎? –
有點,我想啓用時,兩個文本框填充 在我的代碼button1.Enabled =!string.IsNullOrWhiteSpace(textBox1.Text); 如果文本框是空的它將禁用按鈕 但當我填充兩個文本框的按鈕仍然禁用我不知道如何編碼啓用一旦文本框不爲空@VijayKumbhoje –
我不知道如何把/使用if else代碼中的聲明。 –