2 instantiations of TabControlCancelEventArgs
System.Windows.Forms (2)
winforms\Managed\System\WinForms\TabControl.cs (2)
2071
TabControlCancelEventArgs tcc = new
TabControlCancelEventArgs
(this.SelectedTab, this.SelectedIndex, false, TabControlAction.Selecting);
2113
TabControlCancelEventArgs 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)
1558
protected virtual void OnSelecting(
TabControlCancelEventArgs
e) {
1586
protected virtual void OnDeselecting(
TabControlCancelEventArgs
e) {
2071
TabControlCancelEventArgs
tcc = new TabControlCancelEventArgs(this.SelectedTab, this.SelectedIndex, false, TabControlAction.Selecting);
2113
TabControlCancelEventArgs
tcc = new TabControlCancelEventArgs(this.SelectedTab, this.SelectedIndex, false, TabControlAction.Deselecting);
winforms\Managed\System\WinForms\TabControlCancelEventHandler.cs (1)
22
public delegate void TabControlCancelEventHandler(object sender,
TabControlCancelEventArgs
e);