Button BackColor

Roey

Junior Contributor
Joined
Oct 10, 2002
Messages
238
Location
Canada
I want to change the appearance of the buttons on my form so that the BackColor property is White.

The problem that I am having is that when a button is disabled the font color still looks pretty dark making it difficult to distinguish from an enabled button.
 
Personally i would go with creating my own button control that way having control over the exact look of the button in the various states, enabled, disabled, pressed etc
 
yeah, the only way to do that is creating your own custom control.

Try inheriting from Button and overriding the OnPaint method
 
Back
Top