/// <summary>
        /// Initializes a new instance of the <see cref="ZeroitBusyBarPainterSillyscope"/> class.
        /// </summary>
        /// <param name="bar">The bar.</param>
        public ZeroitBusyBarPainterSillyscope(ZeroitBusyBar bar) : base(bar)
        {
            OnBarSet();

            // Presets.None
            SetFromPreset(true);
        }
        /// <summary>
        /// Initializes a new instance of the <see cref="ZeroitBusyBarPainterSillyscope"/> class.
        /// </summary>
        /// <param name="bar">The bar.</param>
        /// <param name="setBarDefaults">if set to <c>true</c> [set bar defaults].</param>
        public ZeroitBusyBarPainterSillyscope(ZeroitBusyBar bar, bool setBarDefaults) : base(bar)
        {
            OnBarSet();

            // Presets.None
            SetFromPreset(setBarDefaults);
        }
Beispiel #3
0
        /// <summary>
        /// Initializes a new instance of the <see cref="ZeroitBusyBarPainterPathGradient"/> class.
        /// </summary>
        /// <param name="bar">The bar.</param>
        public ZeroitBusyBarPainterPathGradient(ZeroitBusyBar bar) : base(bar)
        {
            OnBarSet();

            // Presets.None
            SetFromPreset(true);
        }
Beispiel #4
0
        /// <summary>
        /// Initializes a new instance of the <see cref="ZeroitBusyBarPainterPathGradient"/> class.
        /// </summary>
        /// <param name="bar">The bar.</param>
        /// <param name="setBarDefaults">if set to <c>true</c> [set bar defaults].</param>
        public ZeroitBusyBarPainterPathGradient(ZeroitBusyBar bar, bool setBarDefaults) : base(bar)
        {
            OnBarSet();

            // Presets.None
            SetFromPreset(setBarDefaults);
        }
        /// <summary>
        /// Initializes a new instance of the <see cref="ZeroitBusyBarPainterInstall"/> class.
        /// </summary>
        /// <param name="bar">The bar.</param>
        public ZeroitBusyBarPainterInstall(ZeroitBusyBar bar) : base(bar)
        {
            OnBarSet();

            // Presets.None
            SetFromPreset(true);
        }
        /// <summary>
        /// Initializes a new instance of the <see cref="ZeroitBusyBarPainterFrustratoBar"/> class.
        /// </summary>
        /// <param name="bar">The bar.</param>
        /// <param name="setBarDefaults">if set to <c>true</c> [set bar defaults].</param>
        public ZeroitBusyBarPainterFrustratoBar(ZeroitBusyBar bar, bool setBarDefaults) : base(bar, setBarDefaults)
        {
            //			OnBarSet();

            // Presets.None
            SetFromPreset(setBarDefaults);
        }
        /// <summary>
        /// Initializes a new instance of the <see cref="ZeroitBusyBarPainterFrustratoBar"/> class.
        /// </summary>
        /// <param name="bar">The bar.</param>
        public ZeroitBusyBarPainterFrustratoBar(ZeroitBusyBar bar) : base(bar)
        {
            //			OnBarSet();

            // Presets.None
            SetFromPreset(true);
        }
 /// <summary>
 /// Initializes a new instance of the <see cref="ZeroitBusyBarPainterBlockBase"/> class.
 /// </summary>
 /// <param name="bar">The bar.</param>
 protected ZeroitBusyBarPainterBlockBase(ZeroitBusyBar bar) : base(bar)
 {
     OnBarSet();
 }
 /// <summary>
 /// Copies the this.
 /// </summary>
 /// <param name="o">The o.</param>
 private void CopyThis(ZeroitBusyBarPainterBase o)
 {
     _Bar = o._Bar;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="ZeroitBusyBarPainterBase"/> class.
 /// </summary>
 /// <param name="bar">The bar.</param>
 protected ZeroitBusyBarPainterBase(ZeroitBusyBar bar)
 {
     _Bar = bar;
 }
Beispiel #11
0
 /// <summary>
 /// Initializes a new instance of the <see cref="BusyBarPerformStepArgs"/> class.
 /// </summary>
 /// <param name="busyBar">The busy bar.</param>
 public BusyBarPerformStepArgs(ZeroitBusyBar busyBar)
 {
     BusyBar = busyBar;
 }