Hello I'm trying to display items in a combobox but nothing appears. I used the property:
private void comboBox1_SelectedIndexChanged(object sender, EventArgs e)
{
comboBox1.Items.Add("Item 1");
}
To add in an item but when I run my app the item doesn't show in the drop downlist.
I looked at a lot of MSDN articles but none have worked or perhaps I'm not getting it.
Is there something I'm missing with this?