IApplicationLifecycle.cs 425 B

1234567891011121314151617181920
  1. using System;
  2. namespace Avalonia.Controls
  3. {
  4. /// <summary>
  5. /// Sends events about the application lifecycle.
  6. /// </summary>
  7. public interface IApplicationLifecycle
  8. {
  9. /// <summary>
  10. /// Sent when the application is exiting.
  11. /// </summary>
  12. event EventHandler OnExit;
  13. /// <summary>
  14. /// Exits the application.
  15. /// </summary>
  16. void Exit();
  17. }
  18. }