J
Jon Cosby
How does the "SelectedIndexChanged" event work on a dropdown list? I have
private void InitializeComponent()
{
this.ListClients.SelectedIndexChanged += new
System.EventHandler(this.ListClients_SelectedIndexChanged);
}
private void ListClients_SelectedIndexChanged(object sender,
System.EventArgs e)
{
// Do something
}
but it never gets to the event handler when I select an item on the list.
Does "SelectedIndex" have some dubious meaning I'm not aware of?
Jon Cosby
private void InitializeComponent()
{
this.ListClients.SelectedIndexChanged += new
System.EventHandler(this.ListClients_SelectedIndexChanged);
}
private void ListClients_SelectedIndexChanged(object sender,
System.EventArgs e)
{
// Do something
}
but it never gets to the event handler when I select an item on the list.
Does "SelectedIndex" have some dubious meaning I'm not aware of?
Jon Cosby