123456789101112131415161718192021222324 |
- using System;
- using static Terminal.Gui.Application;
- namespace Terminal.Gui {
- /// <summary>
- /// Event arguments for events about <see cref="RunState"/>
- /// </summary>
- public class RunStateEventArgs : EventArgs {
- /// <summary>
- /// Creates a new instance of the <see cref="RunStateEventArgs"/> class
- /// </summary>
- /// <param name="state"></param>
- public RunStateEventArgs (RunState state)
- {
- State = state;
- }
- /// <summary>
- /// The state being reported on by the event
- /// </summary>
- public RunState State { get; }
- }
- }
|