[Help] Transparent MenuStrip?[Solved]
I need to add a MenuStrip to my form that has a transparent background so it shows the PictureBox that's behind it (not the form's colour).
I've tried using the following code but the MenuStrip 'disappears' for no reason:
Code:
MenuStrip1.Parent = PictureBox1
MenuStrip1.BackColor = Color.Transparent
MenuStrip1.BringToFront()
MenuStrip1.ForeColor = Color.White
MenuStrip1.AutoSize = True