views:

27

answers:

3

Hi, quick question I'm wondering if it's possible to change the color of a WinForm Button's text. I'm looking at the font properties, and can't find anything, but I feel like something as simple and (in my mind) practical as this should be possible ...

+2  A: 

You need the ForeColor property of the button, inherited from Control. See this link.

Dan Puzey
A: 

Use the ForeColor property.

Coding Gorilla
A: 

Take a look at the button ForeColor property

Itay