Why is the SelectedIndexChanged event DockTabControl firing multiple times when just ONE tab is selected?
here is the code: that assigns the event:
_docktab.SelectedIndexChanged += _docktab_SelectedIndexChanged;
but the event fires multiple times, even though all I do is change the selected tab
private void _docktab_SelectedIndexChanged(object sender, EventArgs e)
{
........
}