In Windows forms, ComboBox provides two different features in a single control, it means ComboBox works as both TextBox and ListBox. In ComboBox, only one item is displayed at a time and the rest of the items are present in the drop-down menu. You are allowed to set the visibility of the ComboBox by using Visible Property.
If you want to display the given ComboBox and its child controls, then set the value of Visible property to true, otherwise set false. The default value of this property is true. You can set this property using two different methods:
1. Design-Time: It is the easiest method to set the visibility of the ComboBox control using 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 ComboBox programmatically with the help of given syntax:
public bool Visible { get; set; }
Here, the value of this property is of System.Boolean type. Following steps are used to set the visibility of the ComboBox:
- Step 1: Create a combobox using the ComboBox() constructor is provided by the ComboBox class.
// Creating ComboBox using ComboBox class
ComboBox mybox = new ComboBox();
- Step 2: After creating ComboBox, set the visibility of the ComboBox.
// Set the visibility of the combobox
mybox.Visible = false;
- Step 3: And last add this combobox control to form using Add() method.
// Add this ComboBox to form
this.Controls.Add(mybox);
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 WindowsFormsApp11 {
public partial class Form1 : Form {
public Form1()
{
InitializeComponent();
}
private void Form1_Load( object sender, EventArgs e)
{
Label l = new Label();
l.Location = new Point(222, 80);
l.Size = new Size(99, 18);
l.Text = "Select city name" ;
this .Controls.Add(l);
ComboBox mybox = new ComboBox();
mybox.Location = new Point(327, 77);
mybox.Size = new Size(216, 26);
mybox.Visible = false ;
mybox.Name = "My_Cobo_Box" ;
mybox.Items.Add( "Mumbai" );
mybox.Items.Add( "Delhi" );
mybox.Items.Add( "Jaipur" );
mybox.Items.Add( "Kolkata" );
mybox.Items.Add( "Bengaluru" );
this .Controls.Add(mybox);
}
}
}
|
Output:
Before setting the Visible property the output is like this:

After setting the Visible property to false the output is like this:

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 :
27 Jun, 2019
Like Article
Save Article