Код: Выделить всё
using System;
public static class EventManager
{
public static EventHandler StartButtonPressed;
public static EventHandler LoadButtonPressed;
public static EventHandler OptionsButtonPressed;
public static EventHandler ExampleWithInt;
}
Код: Выделить всё
EventManager.StartButtonPressed?.Invoke(this, EventArgs.Empty);Код: Выделить всё
EventManager.StartButtonPressed += OnStartButtonPressed;Подробнее здесь: https://stackoverflow.com/questions/787 ... atic-class