I have a ToolStrip in a C# application that I set the background color to Transparent. This reveals the underlying form\'s color but unfortunately the ToolStrip border is s
protected override void OnRenderToolStripBorder(ToolStripRenderEventArgs e) { if( e.ToolStrip.GetType().Name != "MyCustomToolStrip" ) { base.OnRenderToolStripBorder(e); } }