Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Changing WinForm Button Text Color?

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 ...

like image 914
sooprise Avatar asked Jul 12 '10 15:07

sooprise


1 Answers

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

like image 185
Dan Puzey Avatar answered Oct 20 '22 22:10

Dan Puzey