Exemplo n.º 1
0
        public void SetAllKeys(UIActionSettings actionSettings)
        {
            UIActionEventArgs action = new UIActionEventArgs(new UIActionSettings[] { actionSettings }, true);

            UIActionEvent?.Invoke(this, action);
        }
Exemplo n.º 2
0
        public void SendUIAction(UIActionSettings actionSettings)
        {
            UIActionEventArgs action = new UIActionEventArgs(new UIActionSettings[] { actionSettings }, false);

            UIActionEvent?.Invoke(this, action);
        }
Exemplo n.º 3
0
        public void SendUIActions(UIActionSettings[] actionsSettings)
        {
            UIActionEventArgs action = new UIActionEventArgs(actionsSettings, false);

            UIActionEvent?.Invoke(this, action);
        }