예제 #1
0
파일: QueueUpdater.cs 프로젝트: lx223/Q3
        public QueueUpdater(Hub hub, User user, GroupsCache groupsCache)
        {
            this.hub  = hub;
            this.user = user;

            this.groupsCache = groupsCache;

            queueList = new QueueList(hub, groupsCache);
            queueList.Show();

            alertDisplayTimer = new DisplayTimer(queueList);
        }
예제 #2
0
파일: QueueUpdater.cs 프로젝트: lx223/Q3
        public QueueUpdater(Hub hub, User user, GroupsCache groupsCache)
        {
            this.hub = hub;
            this.user = user;

            this.groupsCache = groupsCache;           

            queueList = new QueueList(hub, groupsCache);
            queueList.Show();

            alertDisplayTimer = new DisplayTimer(queueList);
        }
예제 #3
0
파일: DisplayTimer.cs 프로젝트: lx223/Q3
 public DisplayTimer(QueueList targetWindow)
 {
     this.targetWindow = targetWindow;
     targetWindow.GotFocus += (s, e) => cancel = true;
 }
예제 #4
0
 public DisplayTimer(QueueList targetWindow)
 {
     this.targetWindow      = targetWindow;
     targetWindow.GotFocus += (s, e) => cancel = true;
 }