ControlPaint.Dark Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Creates a new dark color object for the control.
Overloads
Dark(Color) |
Creates a new dark color object for the control from the specified color. |
Dark(Color, Single) |
Creates a new dark color object for the control from the specified color and darkens it by the specified percentage. |
Dark(Color)
Creates a new dark color object for the control from the specified color.
public:
static System::Drawing::Color Dark(System::Drawing::Color baseColor);
public static System.Drawing.Color Dark (System.Drawing.Color baseColor);
static member Dark : System.Drawing.Color -> System.Drawing.Color
Public Shared Function Dark (baseColor As Color) As Color
Parameters
Returns
A Color that represents the dark color on the control.
Remarks
If the specified Color is one of the SystemColors, the color is converted to a SystemColors.ControlDark color; otherwise, the color's luminosity value is decreased.
Applies to
Dark(Color, Single)
Creates a new dark color object for the control from the specified color and darkens it by the specified percentage.
public:
static System::Drawing::Color Dark(System::Drawing::Color baseColor, float percOfDarkDark);
public static System.Drawing.Color Dark (System.Drawing.Color baseColor, float percOfDarkDark);
static member Dark : System.Drawing.Color * single -> System.Drawing.Color
Public Shared Function Dark (baseColor As Color, percOfDarkDark As Single) As Color
Parameters
Returns
A Color that represent the dark color on the control.
Remarks
If the specified Color is one of the SystemColors, the color is converted to a SystemColors.ControlDark color; otherwise, the color's luminosity value is decreased.