Example #1
0
		public statusLabel() {
			_state = statusLabelStates.Waiting;

			tmrCircle = new Timer();
			tmrCircle.Interval = 50;
			tmrCircle.Tick += tmrCircle_Tick;
			tmrCircle.Start();

			SetStyle(ControlStyles.SupportsTransparentBackColor, true);
			SetStyle(ControlStyles.OptimizedDoubleBuffer, true);
			DoubleBuffered = true;
		}
        public statusLabel()
        {
            _state = statusLabelStates.Waiting;

            tmrCircle          = new Timer();
            tmrCircle.Interval = 50;
            tmrCircle.Tick    += tmrCircle_Tick;
            tmrCircle.Start();

            SetStyle(ControlStyles.SupportsTransparentBackColor, true);
            SetStyle(ControlStyles.OptimizedDoubleBuffer, true);
            DoubleBuffered = true;
        }