How to get the selected item of a combo box to a string variable in c# April 4, 2023 by Tarik Try this: string selected = this.ComboBox.GetItemText(this.ComboBox.SelectedItem); MessageBox.Show(selected);