Exemplo n.º 1
0
 void simconnect_OnRecvEvent(SimConnect sender, SIMCONNECT_RECV_EVENT recEvent)
 {
     FSXActionEventArgs args = new FSXActionEventArgs();
     args.Action = recEvent.uEventID;
     OnFSXAction(args);
 }
Exemplo n.º 2
0
 public void OnFSXAction(FSXActionEventArgs e)
 {
     EventHandler<FSXActionEventArgs> handler = FSXActionEventHandler;
     if (handler != null) handler(this, e);
 }