在 Visual Studio 2010 中,如果文本框中没有任何内容,我希望该按钮将被禁用。它以禁用状态启动,并在我在文本框中输入内容时启用。但是当我从文本框中删除所有内容时,它仍然处于启用状态。这就是我所做的:
public Form1()
{
InitializeComponent();
button1.Enabled = false;
}
private void textBox1_TextChanged(object sender, EventArgs e)
{
if (textBox1.Text == null)
{
button1.Enabled = false;
}
else
{
button1.Enabled = true;
}
}
有什么建议么?
谢谢!