Reputation: 755
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?
Upvotes: 8
Views: 6593
Reputation: 313
@Yetti's answer is correct, but has a small issue. It also removes the border from the dropdown part of the menu (the one that opens when you click on an item). In order to avoid this, do the following in OnRenderToolStripBorder:
public class MySR : ToolStripSystemRenderer
{
public MySR()
{
}
protected override void OnRenderToolStripBorder(ToolStripRenderEventArgs e)
{
if (e.AffectedBounds == e.ToolStrip.Bounds) return;
base.OnRenderToolStripBorder(e);
}
}
Upvotes: 0
Reputation: 3688
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);
}
Upvotes: 3
Reputation: 1720
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.
Upvotes: 9