Is it possible to make translucent control in WinForms?

    1 answer 1

    In the constructor of the control, try to register:

    this.SetStyle(ControlStyles.SupportsTransparentBackColor, true); this.BackColor = Color.Transparent; 

    You can also override the rendering in the OnPaint method.