Home » .Net » C#.Net » C#.Net Windows Development

TextBox.Visible Property with Example in C#.Net

C#.Net - TextBox.Visible Property with Example: Here we are going to learn about the Visible property of TextBox Control in C#.Net Windows Application Development.
Submitted by IncludeHelp, on September 10, 2018

Here we are demonstrating use of Visible property of TextBox Control.

Visible property contains two values

  1. True: Using this - textbox can be visible on parent control form
  2. False: Using this - textbox can be hide on parent control form

By default this is True.

Example:

TextBox.Visible Property with Example in C#.Net

TextBox.Visible Property with Example in C#.Net

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.

Code to show TextBox on 'button_click' Event:

private void btnShow_Click(object sender, EventArgs e)
{
   textInput.Visible = true;
}


Comments and Discussions!

Load comments ↻





Copyright © 2024 www.includehelp.com. All rights reserved.