Open In App

How to set the Visibility of the ComboBox in C#?

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:


Article Tags :
C#