-1

我想知道是否有可能的代码来做这样的事情:

if (textBox1.Text == "No")
{
    //some code to make textBox2 ReadOnly
}
4

3 回答 3

1

TextBox.ReadOnly如果它的ASP.Net应用程序使用属性,对于 WinForm 它是

如果它的WinForm则使用TextBox.ReadOnly属性。

两者的代码相同:

if (textBox1.Text == "No")
{
    textBox1.ReadOnly = true;
}

请参阅:如何:创建只读文本框(Windows 窗体)

于 2013-05-07T04:47:46.043 回答
1

尝试这个:

textbox1.ReadOnly = true;

或这个:

textbox1.Enabled = false;
于 2013-05-07T04:48:37.840 回答
0
if (textBox1.Text == "No")
{
    textBox1.Enabled=false
}
于 2013-05-07T04:47:20.063 回答