Example #1
0
		public actionLabel() {
			_state = actionLabelStates.Waiting;
			_suppressTextPadding = false;

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

			SetStyle(ControlStyles.SupportsTransparentBackColor, true);
			SetStyle(ControlStyles.OptimizedDoubleBuffer, true);
			DoubleBuffered = true;
		}
        public actionLabel()
        {
            _state = actionLabelStates.Waiting;
            _suppressTextPadding = false;

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

            SetStyle(ControlStyles.SupportsTransparentBackColor, true);
            SetStyle(ControlStyles.OptimizedDoubleBuffer, true);
            DoubleBuffered = true;
        }
		public hideBottomProgressEventArgs(actionLabelStates state, string message) {
			Message = message;
			State = state;
		}
 public hideBottomProgressEventArgs(actionLabelStates state, string message)
 {
     Message = message;
     State   = state;
 }
		public changeActionLabelStateEventArgs(string name, actionLabelStates state) {
			actionLabelName = name;
			State = state;
		}
Example #6
0
 public changeActionLabelStateEventArgs(string name, actionLabelStates state)
 {
     actionLabelName = name;
     State           = state;
 }