示例#1
0
        protected void OnQuitApp()
        {
            // ... do something ...

            // can only be invoked in this class
            QuitEventHandler?.Invoke(this, EventArgs.Empty);
        }
示例#2
0
 public void OnQuit()
 {
     QuitEventHandler?.Invoke(this, EventArgs.Empty);
 }