c#中textbox属性
Here we are demonstrating use of Visible property of TextBox Control.
在这里,我们演示了TextBox Control的Visible属性的使用。
Visible property contains two values
可见属性包含两个值
True: Using this - textbox can be visible on parent control form
True :使用此选项-文本框在父控件窗体上可见
False: Using this - textbox can be hide on parent control form
False :使用此方法-文本框可以隐藏在父控件窗体上
By default this is True.
默认情况下为True。
Example:
例:
In this example, we took a Windows form that contains a textbox and button named txtInput and btnShow respectively, we can change the name of the control using name property. And we set Visible property to False. Using property window, we can open property window using "F4" short-cut key for selected control.
在此示例中,我们采用Windows窗体,其中分别包含一个名为txtInput和btnShow的文本框和按钮,我们可以使用name属性更改控件的名称。 并且我们将Visible属性设置为False 。 使用属性窗口,我们可以使用“ F4”快捷键打开所选控件的属性窗口。
Code to show TextBox on 'button_click' Event:
在“ button_click”事件上显示TextBox的代码:
private void btnShow_Click(object sender, EventArgs e)
{
textInput.Visible = true;
}
翻译自: https://www.includehelp.com/dot-net/textbox-visible-property-with-example.aspx
c#中textbox属性