/// <summary>
 /// Initializes a new instance of the <see cref="NuGenProgressBarPaintParams"/> class.
 /// </summary>
 /// <exception cref="ArgumentNullException">
 /// <para><paramref name="g"/> is <see langword="null"/>.</para>
 /// -or-
 /// <para><paramref name="sender"/> is <see langword="null"/>.</para>
 /// </exception>
 public NuGenProgressBarPaintParams(
     object sender,
     Graphics g,
     Rectangle bounds,
     NuGenControlState state,
     NuGenProgressBarStyle style
     )
     : base(sender, g, bounds, state)
 {
     _style = style;
 }
		/// <summary>
		/// Initializes a new instance of the <see cref="NuGenProgressBarPaintParams"/> class.
		/// </summary>
		/// <exception cref="ArgumentNullException">
		/// <para><paramref name="g"/> is <see langword="null"/>.</para>
		/// -or-
		/// <para><paramref name="sender"/> is <see langword="null"/>.</para>
		/// </exception>
		public NuGenProgressBarPaintParams(
			object sender,
			Graphics g,
			Rectangle bounds,
			NuGenControlState state,
			NuGenProgressBarStyle style
			)
			: base(sender, g, bounds, state)
		{
			_style = style;
		}