Example #1
0
        private void _statusIconTimer_Tick(object sender, EventArgs e)
        {
            _IconStatus._systemNotifyIcon.Icon =
                (_currentIconVisible) ?
                IconCollector.Get(TIcon.NULL) :
                IconCollector.Get(TIcon.Logining);

            _currentIconVisible = !(_currentIconVisible);
        }
Example #2
0
 public void Reset()
 {
     _StatusIconTimer.Stop();
     _IconStatus._systemNotifyIcon.Icon = IconCollector.Get(TIcon.NULL);
 }