15 lines
421 B
C#
15 lines
421 B
C#
namespace Dashboard.Windowing
|
|
{
|
|
public interface IEventListener
|
|
{
|
|
event EventHandler? EventRaised;
|
|
|
|
/// <summary>
|
|
/// Send an event to this windowing object.
|
|
/// </summary>
|
|
/// <param name="sender">The object which generated the event.</param>
|
|
/// <param name="args">The event arguments sent.</param>
|
|
void SendEvent(object? sender, EventArgs args);
|
|
}
|
|
}
|