Click here to Skip to main content
15,881,588 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
HI GUYS.
I want to change form backcolor whent pressing a button.
in form properties>>backColor we can choice this color:ScrollBar.
but i cant use this color in this code:
this.BackColor = Color.White;


how can i change form backColor to ScrollBar with Code?
Posted
Comments
Sergey Alexandrovich Kryukov 10-Dec-12 2:53am    
What's the problem, reading help pages? :-)
--SA

Yes, you can, if you read documentation more thoroughly. This is System.Drawing.SystemColors: System.Drawing.SystemColors.ScrollBar, ButtonFace, ControlText… Please see:
http://msdn.microsoft.com/en-us/library/system.drawing.systemcolors.aspx[^].

—SA
 
Share this answer
 
this.BackColor = System.Drawing.SystemColors.ScrollBar;
 
Share this answer
 
Comments
siasalar 11-Dec-12 1:00am    
thanks alot sir
[no name] 11-Dec-12 1:04am    
Don't call me Sir, I'm 20.. :) :)

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900