The System.Drawing.SystemColors
class has properties exposing the various system colours, so you can do
this.BackColor = SystemColors.Control;
The full range of properties to access other colours is listed on MSDN.
The System.Drawing.SystemColors
class has properties exposing the various system colours, so you can do
this.BackColor = SystemColors.Control;
The full range of properties to access other colours is listed on MSDN.