示例#1
0
 public void ShowNotifications()
 {
     if (roundDebater == null)
     {
         return;
     }
     // we only have conflicts as notifications
     btnConflict.SetRoomConflict(roundDebater.GetConflict());
 }
示例#2
0
        public void ShowNotifications()
        {
            RoomConflict sum = new RoomConflict(null);

            foreach (DebaterWidget w in vboxTeamMembers)
            {
                w.ShowNotifications();
                sum.Merge(w.RoundDebater.GetConflict());
            }
            btnConflict.SetRoomConflict(sum);
        }