Open In App

How to Sort the Elements 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 sort the elements present in the ComboBox by using the Sorted Property.
If you want to sort the elements of the ComboBox, then set the value of this property to true, otherwise, false. The default value of this property is false. This sorting is case-insensitive and the elements are sort in ascending order. You can set this property using two different methods:

1. Design-Time: It is the easiest method to sort the elements present in 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 sort the elements present in the ComboBox programmatically with the help of given syntax:



public bool Sorted { get; set; }

Here, the value of this property is of System.Boolean type. Following steps are used to sort the ComboBox elements:


Article Tags :
C#