@autopilot wrote:
are you just trying to change the background & text color of command buttons? if so, use somthing like:
//change background color
button1.BackColor = Color.Firebrick;
//change text color
button1.ForeColor = Color.ForestGreen;
this would probably do for individual buttons, but i’m going for a class/control that can actually create the buttons by drawing them or construct them from the standard command buttons