2 instantiations of TabControlCancelEventArgs
System.Windows.Forms (2)
winforms\Managed\System\WinForms\TabControl.cs (2)
2071TabControlCancelEventArgs tcc = new TabControlCancelEventArgs(this.SelectedTab, this.SelectedIndex, false, TabControlAction.Selecting); 2113TabControlCancelEventArgs tcc = new TabControlCancelEventArgs(this.SelectedTab, this.SelectedIndex, false, TabControlAction.Deselecting);
5 references to TabControlCancelEventArgs
System.Windows.Forms (5)
winforms\Managed\System\WinForms\TabControl.cs (4)
1558protected virtual void OnSelecting(TabControlCancelEventArgs e) { 1586protected virtual void OnDeselecting(TabControlCancelEventArgs e) { 2071TabControlCancelEventArgs tcc = new TabControlCancelEventArgs(this.SelectedTab, this.SelectedIndex, false, TabControlAction.Selecting); 2113TabControlCancelEventArgs tcc = new TabControlCancelEventArgs(this.SelectedTab, this.SelectedIndex, false, TabControlAction.Deselecting);
winforms\Managed\System\WinForms\TabControlCancelEventHandler.cs (1)
22public delegate void TabControlCancelEventHandler(object sender, TabControlCancelEventArgs e);