Answers for "c# combobox selected item"

C#
3

c# combobox selectedvalue

private void comboBox1_SelectedIndexChanged(object sender, EventArgs e)
{
    ComboBox cmb = (ComboBox)sender;
    int selectedIndex = cmb.SelectedIndex;
    int selectedValue = (int)cmb.SelectedValue;

    ComboboxItem selectedCar = (ComboboxItem)cmb.SelectedItem;
    MessageBox.Show(String.Format("Index: [{0}] CarName={1}; Value={2}", selectedIndex, selectedCar.Text, selecteVal));        
}
Posted by: Guest on November-11-2020
4

combobox selected item c#

int comboBox_selectedIndex = comboBoxName.SelectedIndex; //item index
string comboBox_selectedContent = comboBoxName.SelectedItem; //item name
// Unselected combo box returns null. Be careful to catch errors.
Posted by: Guest on September-10-2021
0

c# combobox selected item

string getText = comboBox.SelectedItem.ToString();
Posted by: Guest on October-17-2021

Code answers related to "c# combobox selected item"

C# Answers by Framework

Browse Popular Code Answers by Language