Each property of the SystemColors class is a Color structure that is the color of a Windows display element.
Public NotInheritable Class SystemColors
Dim instance As SystemColors
public sealed class SystemColors
public ref class SystemColors sealed
public final class SystemColors
Better performance is achieved by using the properties of the SystemPens or SystemBrushes classes rather than creating a new pen or brush based on a value from SystemColors. For example, if you wanted to get a brush for the face color of a 3-D element, use the SystemBrushes..::.Control property because it gets a brush that already exists, whereas calling the SolidBrush constructor with a parameter value of SystemColors..::.Control will create a new brush.
The following code example demonstrates the Equality operator and the SystemColors class. This example is designed to be used with a Windows Form that contains a button named Button1. Paste the following code into your form and associate the Button1_Click method with the button's Click event.
Private Sub Button1_Click(ByVal sender As System.Object, _ ByVal e As System.EventArgs) Handles Button1.Click If (Color.op_Equality(Me.BackColor, SystemColors.ControlDark)) Then Me.BackColor = SystemColors.Control End If End Sub
private void Button1_Click(System.Object sender, System.EventArgs e) { if (this.BackColor == SystemColors.ControlDark) { this.BackColor = SystemColors.Control; } }
void Button1_Click( System::Object^ /*sender*/, System::EventArgs^ /*e*/ ) { if ( this->BackColor == SystemColors::ControlDark ) { this->BackColor = SystemColors::Control; } }
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98, Windows CE, Windows Mobile for Smartphone, Windows Mobile for Pocket PC