/// <summary>
        /// Initializes a new instance of the <see cref="ErrorWarnInfoProvider"/> class.
        /// </summary>
        public ErrorWarnInfoProvider()
        {
            components         = new Container();
            _errorProviderInfo = new Gizmox.WebGUI.Forms.ErrorProvider(components);
            _errorProviderWarn = new Gizmox.WebGUI.Forms.ErrorProvider(components);
            BlinkRate          = 0;
            Icon = DefaultIconError;

            _errorProviderInfo.BlinkRate = 0;
            _errorProviderInfo.Icon      = DefaultIconInformation;

            _errorProviderWarn.BlinkRate = 0;
            _errorProviderWarn.Icon      = DefaultIconWarning;
        }
    /// <summary>
    /// Initializes a new instance of the <see cref="ErrorWarnInfoProvider"/> class.
    /// </summary>
    public ErrorWarnInfoProvider()
    {
      components = new Container();
      _errorProviderInfo = new Gizmox.WebGUI.Forms.ErrorProvider(components);
      _errorProviderWarn = new Gizmox.WebGUI.Forms.ErrorProvider(components);
      BlinkRate = 0;
      Icon = DefaultIconError;

      _errorProviderInfo.BlinkRate = 0;
      _errorProviderInfo.Icon = DefaultIconInformation;

      _errorProviderWarn.BlinkRate = 0;
      _errorProviderWarn.Icon = DefaultIconWarning;
    }