Ejemplo n.º 1
0
        private void HandelFinish()
        {
            string s = model.FinishMessage;

            //todo display message
            NotifyFinish?.Invoke();
        }
Ejemplo n.º 2
0
 private void HandleCommandRes(CommandResult res)
 {
     KeepCom = res.KeepConnection;
     if (res.Command == Command.Close)
     {
         FinishMessage = res.Data; //todo what is the data in this case
         //todo need to check if play command failed?
         NotifyFinish?.Invoke();
     }
 }
Ejemplo n.º 3
0
 public void ClickedOk()
 {
     if (Changed())
     {
         SetVals();
     }
     else
     {
         NotifyFinish?.Invoke();
     }
 }
Ejemplo n.º 4
0
 private void HandleClose(string data)
 {
     KeepCom = false;
     NotifyFinish?.Invoke();
 }
Ejemplo n.º 5
0
 private void HandleBack()
 {
     NotifyFinish?.Invoke();
 }
Ejemplo n.º 6
0
 private void HandleFinish()
 {
     this.Close();
     NotifyFinish?.Invoke();
 }