| 1234567891011121314151617181920 |
- using System;
- namespace Avalonia.Controls
- {
- /// <summary>
- /// Sends events about the application lifecycle.
- /// </summary>
- public interface IApplicationLifecycle
- {
- /// <summary>
- /// Sent when the application is exiting.
- /// </summary>
- event EventHandler OnExit;
- /// <summary>
- /// Exits the application.
- /// </summary>
- void Exit();
- }
- }
|