If the control supports transparent backgrounds, you can use Color.FromArgb () to set the translucent color:
button1.BackColor = Color.FromArgb(100, Color.Red);
Depending on how you want this to work, you have changed the alpha value (from 0 to 255).
Xander
source share