public static void ForwardKeyPressEvent(object sender, bool doForwardActions)
 {
     OnForwardPanelEventChanged?.Invoke(sender, new ForwardPanelEventArgs()
     {
         Forward = doForwardActions
     });
 }
 public static bool OnForwardPanelEventChangedSubscribed()
 {
     return(OnForwardPanelEventChanged != null && OnForwardPanelEventChanged.GetInvocationList().Length > 0);
 }