I was experimenting with different options for the button background color and ended up changing the BackColor property in the Appearance category. I then chang
BackColor
To restore the default background and foreground to a button use:
Button1.BackColor = SystemColors.ButtonFace; Button1.ForeColor = default(Color); Button1.UseVisualStyleBackColor = true;