Hello
Through which event was ListBox.SelectedIndexChanged called?
ListBox.MouseClick Event ====> Is ListBox.SelectedIndexChanged called through ListBox.MouseClick Event ?
ListBox.TextChanged Event ====> Is ListBox.SelectedIndexChanged called through ListBox.TextChanged Event ?
ListBox.Click Event ====> Is ListBox.SelectedIndexChanged called through ListBox.Click Event ?
Through which event was ListBox.SelectedIndexChanged called?
C#:
private void listBox1_SelectedIndexChanged(object sender, System.EventArgs e)
{
ListBox list1 = (ListBox)sender; <===== Here............ Must be tracked. .... Is ListBox.SelectedIndexChanged called through ListBox.MouseClick Event ? Is ListBox.SelectedIndexChanged called through ListBox.TextChanged Event ? Is ListBox.SelectedIndexChanged called through ListBox.Click Event ?
System.EventArgs e = (System.EventArgs)e; <===== Here............ Must be tracked. .... Is ListBox.SelectedIndexChanged called through ListBox.MouseClick Event ? Is ListBox.SelectedIndexChanged called through ListBox.TextChanged Event ? Is ListBox.SelectedIndexChanged called through ListBox.Click Event ?
}
ListBox.MouseClick Event ====> Is ListBox.SelectedIndexChanged called through ListBox.MouseClick Event ?
ListBox.TextChanged Event ====> Is ListBox.SelectedIndexChanged called through ListBox.TextChanged Event ?
ListBox.Click Event ====> Is ListBox.SelectedIndexChanged called through ListBox.Click Event ?