示例#1
0
        public MonitorControl(MonitorControlProperties properties)
        {
            this.properties = properties;

            timer          = new Timer();
            timer.Interval = 5000;
            timer.Tick    += new EventHandler(OnTimerTick);
            timer.Start();
            timer.Enabled = false;
        }
示例#2
0
 public PersistentPanel(Guid panelId, MonitorControlProperties monitorControlProperties)
 {
     this.panelId = panelId;
     this.monitorControlProperties = monitorControlProperties;
 }