I have a ToolStrip in a C # application in which I set the background color to Transparent. This shows the foreground color of the form, but unfortunately the ToolStrip border is still visible.
I implemented Custom Renderer and redefined the DrawBoarder method to not draw anything, but it seems to be applicable to all buttons contained in it (i.e. the menu on the drop-down buttons is also drawn without a frame).
So I'm stuck. What is the best way to make the entire ToolStrip transparent, but leave the buttons alone?
source share