更改WinForm按钮文本颜色?

我想知道是否可以改变WinForm Button文本的颜色。 我正在看字体属性,找不到任何东西,但我觉得这些东西很简单,并且(在我看来)实用,因为这应该是可能的……

您需要inheritance自Control的按钮的ForeColor属性。 看到这个链接 。

使用ForeColor属性。

看看按钮ForeColor属性

 Button btn = new Button(); //in this situation text color it will be black, for white 255,255,255 btn.Forecolor = System.Drawing.Color.FromArgb(0,0,0);