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