我想知道是否有可能的代码来做这样的事情:
if (textBox1.Text == "No")
{
//some code to make textBox2 ReadOnly
}
我想知道是否有可能的代码来做这样的事情:
if (textBox1.Text == "No")
{
//some code to make textBox2 ReadOnly
}
TextBox.ReadOnly
如果它的ASP.Net应用程序使用属性,对于 WinForm 它是
如果它的WinForm则使用TextBox.ReadOnly
属性。
两者的代码相同:
if (textBox1.Text == "No")
{
textBox1.ReadOnly = true;
}
尝试这个:
textbox1.ReadOnly = true;
或这个:
textbox1.Enabled = false;
if (textBox1.Text == "No")
{
textBox1.Enabled=false
}