In Windows Forms, ListBox control is used to show multiple elements in a list, from which a user can select one or more elements and the elements are generally displayed in multiple columns. In ListBox, you can set the visibility of the ListBox using Visible Property of the ListBox.
If the value of this property is set to true, then the Listbox control and its child control are visible on the screen and if the value of this property is set to false, then the Listbox control and its child control are not visible on the screen. The default value of this property is true. You can set this property in two different ways:
1. Design-Time: It is the easiest way to set the visibility of the ListBox as shown in the following steps:
2. Run-Time: It is a little bit trickier than the above method. In this method, you can set the visibility of the ListBox control programmatically with the help of given syntax:
public bool Visible { get; set; }
Here, the value of this property is of System.Boolean type. The following steps show how to set the visibility of the ListBox dynamically:
- Step 1: Create a list box using the ListBox() constructor is provided by the ListBox class.
// Creating ListBox using ListBox class constructor
ListBox lstbox = new ListBox();
- Step 2: After creating ListBox, set the Visible property of the ListBox provided by the ListBox class.
// Setting the visibility of the listbox
lstbox.Visible = false;
- Step 3: And last add this ListBox control to the form using Add() method.
// Add this ListBox to the form
this.Controls.Add(lstbox);
Example:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace WindowsFormsApp28 {
public partial class Form1 : Form {
public Form1()
{
InitializeComponent();
}
private void Form1_Load( object sender, EventArgs e)
{
Label lb = new Label();
lb.Location = new Point(243, 80);
lb.Text = "Select post" ;
this .Controls.Add(lb);
ListBox lstbox = new ListBox();
lstbox.Location = new Point(246, 104);
lstbox.Visible = false ;
lstbox.Items.Add( "Intern" );
lstbox.Items.Add( "Software Engineer" );
lstbox.Items.Add( "Project Manager" );
lstbox.Items.Add( "HR" );
this .Controls.Add(lstbox);
}
}
}
|
Output:
Before setting visibility to false:

After setting visibility to false:

Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
17 Jul, 2019
Like Article
Save Article