ControlPaint.Dark Method

Definition

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

baseColor
Color

The Color to be darkened.

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

baseColor
Color

The Color to be darkened.

percOfDarkDark
Single

The percentage to darken the specified Color.

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.

Applies to