System.Windows.Forms.ThemeWin32Classic.GetControlBackBrush C# (CSharp) Method

GetControlBackBrush() protected method

protected GetControlBackBrush ( Color c ) : Brush
c System.Drawing.Color
return System.Drawing.Brush
		protected Brush GetControlBackBrush (Color c) {
			if (c.ToArgb () == DefaultControlBackColor.ToArgb ())
				return SystemBrushes.Control;
			return ResPool.GetSolidBrush (c);
		}
ThemeWin32Classic