8

I read a few other articles about how people want to customize the colors and gradients of a MenuStrip.

What I want to do is remove the gradient so that the MenuStrip is the same color as the rest of the form which, for me, is the default settings used when creating a new WinForms project. I tried changing the RenderMode to 'System' and it works sort of, but it leaves a white line the length of the MenuStrip when I build and run it. Do I have to do some drawing and painting? Or is there an easier way?

Cody Gray - on strike
  • 239,200
  • 50
  • 490
  • 574
BrandNewDev
  • 755
  • 2
  • 9
  • 16

2 Answers2

9

This is basically the same question as this one

The answer references this Microsoft bug post

It seems to be an issue all the way from 2005. Although the comments say that it is a MS bug which will not be fixed, there is a workaround which involves implementing your own renderer:

public class MySR : ToolStripSystemRenderer
{
    public MySR()
    {
    }

    protected override void OnRenderToolStripBorder(ToolStripRenderEventArgs e)
    {
        //base.OnRenderToolStripBorder(e);
    }
}

Then all you have to do is set your menustrip's renderer to the one you just implemented:

menustrip1.Renderer = new MySR();

I just tried it out and it seems to work just fine.

Community
  • 1
  • 1
Yetti
  • 1,710
  • 1
  • 14
  • 28
  • 1
    Indeed a duplicate question, but your answer here is much better. Mainly because you took the time to copy and paste the workaround code. – Cody Gray - on strike Feb 16 '11 at 04:12
  • 1
    It's pretty useless of MS for this bug to be ~6 years and 2 versions later and its still not fixed! Thanks for your answer Yetti, I appreciate it. – BrandNewDev Feb 16 '11 at 09:14
3

I agree with Yetti but if you wish to maintain your borders you can try this. Replace Brush with your background Color

protected override void OnRenderToolStripBorder(ToolStripRenderEventArgs e)
{
  base.OnRenderToolStripBorder(e);
  e.Graphics.FillRectangle(Brushes.Black, e.ConnectedArea);
}
General Grey
  • 3,598
  • 2
  • 25
  • 32