How to set Text in ComboBox in C#? Last Updated : 30 Jun, 2019 Comments Improve Suggest changes Like Article Like Report 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 add text in your ComboBox by using the Text Property. You can set this property using two different methods: 1. Design-Time: It is the easiest method to set the text in the ComboBox control using the following steps: Step 1: Create a windows form as shown in the below image: Visual Studio -> File -> New -> Project -> WindowsFormApp Step 2: Drag the ComboBox control from the ToolBox and drop it on the windows form. You are allowed to place a ComboBox control anywhere on the windows form according to your need. Step 3: After drag and drop you will go to the properties of the ComboBox control to set the text in the ComboBox. Output: 2. Run-Time: It is a little bit trickier than the above method. In this method, you can set the text in the ComboBox programmatically with the help of given syntax: public override string Text { get; set; } Here, the value of this property is of System.String type. Following steps are used to set the text in the ComboBox elements: 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 text in the ComboBox elements. // Set text in the combobox mybox.Text = "Rohit"; Step 3: And last add this combobox control to form using Add() method. // Add this ComboBox to form this.Controls.Add(mybox); Example: CSharp 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 WindowsFormsApp14 { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void Form1_Load(object sender, EventArgs e) { // Creating and setting the properties of label Label l = new Label(); l.Location = new Point(222, 80); l.Size = new Size(99, 18); l.Text = "Enter name"; // Adding this label to the form this.Controls.Add(l); // Creating and setting the properties of comboBox ComboBox mybox = new ComboBox(); mybox.Location = new Point(327, 77); mybox.Size = new Size(216, 26); mybox.MaxLength = 3; mybox.Text = "Rohit"; // Adding this ComboBox to the form this.Controls.Add(mybox); } } } Output: Comment More infoAdvertise with us Next Article How to set Name of the ComboBox in C#? A ankita_saini Follow Improve Article Tags : C# Similar Reads How to set Name 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 provide a name to your ComboBox by us 3 min read How to set the Location 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 location of your ComboBox in 3 min read How to set text in the CheckBox in C#? The CheckBox control is the part of windows form which is used to take input from the user. Or in other words, CheckBox control allows us to select single or multiple elements from the given list. In CheckBox, you are allowed to set the text in the CheckBox using the Text property of the CheckBox. I 3 min read How to set the Size 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 size to your ComboBox by usin 3 min read How to Add Items in 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 a list or collection of elements in y 3 min read How to style the Drop-Down List in 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 style drop-down list in your ComboBox 3 min read Like