Exemple #1
0
 public void Show()
 {
     if (UiBlock != null)
     {
         UiBlock.Post(GetInfo());
     }
 }
Exemple #2
0
        public void Show(bool status)
        {
            //  UpdateInfo(status);
            // Show();

            var ccdCycle = GetInfo();

            if (status)
            {
                ccdCycle.All++;
                ccdCycle.Ok++;
            }
            else
            {
                ccdCycle.All++;
                ccdCycle.Ng++;
            }

            UiBlock.Post(ccdCycle);
            StatusBlock.Post(status);
        }