Cheap, yet effective Metro-style UI buttons
Inherited from the normal WinForms buttons that you're already used to, these cheap Metro-style UI buttons will spice up your plain-looking application
MetroButton button1 = new MetroButton();
button1.Theme = Theme.ModernDark;
Form1.Controls.Add(button1);
enum Theme
{
DefaultRed,
MightyBlue,
SweetGreen,
StubbornPurple,
ModernDark,
PrettyOrange
}