TabControlCancelEventArgs.cs 635 B

1234567891011121314151617181920212223
  1. using System.ComponentModel;
  2. namespace System.Windows.Forms
  3. {
  4. public class TabControlCancelEventArgs : CancelEventArgs
  5. {
  6. public TabPage TabPage { get; }
  7. public int TabPageIndex { get; }
  8. public TabControlAction Action { get; }
  9. public TabControlCancelEventArgs(TabPage tabPage, int tabPageIndex, bool cancel, TabControlAction action)
  10. : base(cancel)
  11. {
  12. TabPage = tabPage;
  13. TabPageIndex = tabPageIndex;
  14. Action = action;
  15. }
  16. }
  17. public delegate void TabControlCancelEventHandler(object sender, TabControlCancelEventArgs e);
  18. }