SplitViewPaneClosingEventArgs.cs 270 B

1234567891011121314
  1. using System;
  2. namespace Avalonia.Controls
  3. {
  4. public class SplitViewPaneClosingEventArgs : EventArgs
  5. {
  6. public bool Cancel { get; set; }
  7. public SplitViewPaneClosingEventArgs(bool cancel)
  8. {
  9. Cancel = cancel;
  10. }
  11. }
  12. }