How to disable the line under tool strip in winform c#?
Asked Answered
K

4

15

alt text

this line ?     

Kathrynkathryne answered 16/12, 2009 at 22:26 Comment(1)
How did you get the background white? That's not standard.Jiva
W
57

It's a bug in the "system" renderer, details in this bug report.

Microsoft's response gives a very easy workaround:

1) Create a subclass of ToolStripSystemRenderer, overriding OnRenderToolStripBorder and making it a no-op:

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

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

2) Use that renderer for your toolstrip. The renderer must be assigned after any assignment to the toolstrip's RenderMode property or it will be overwritten with a reference to a System.Windows.Forms renderer.

toolStrip3.Renderer = new MySR();
Wildeyed answered 13/1, 2010 at 21:20 Comment(2)
+1, but I've edited the answer to actually include the answer rather than only pointing to it. StackOverflow should stand alone, external links can rot. They make a good adjunct, but the main content should be on SO itself.Boffin
Why is this shutting down my application?Tarnation
B
12

You might want to add type check to avoid missing border on ToolStripDropDownMenu/etc. (since inherited from ToolStrip, it starts same custom renderer usage automatically):

protected override void OnRenderToolStripBorder(ToolStripRenderEventArgs e)
{
    if (e.ToolStrip.GetType() == typeof(ToolStrip))
    { 
        // skip render border
    }
    else
    {
        // do render border
        base.OnRenderToolStripBorder(e);
    }
}

Missed ToolStripDropDownMenu border is not so noticable while using ToolStripSystemRenderer but become real eyesore with ToolStripProfessionalRenderer.

Also, setting System.Windows.Forms.ToolStripManager.Renderer = new MySR(); could be usefull if you want all ToolStrip instances appwide to use MySR by default.

Bastinado answered 3/7, 2013 at 0:59 Comment(0)
T
2

This class is more complete than other!

public class ToolStripRender : ToolStripProfessionalRenderer
{
    public ToolStripRender() : base() { }

    protected override void OnRenderToolStripBorder(ToolStripRenderEventArgs e)
    {
        if (!(e.ToolStrip is ToolStrip))
            base.OnRenderToolStripBorder(e);
    }
}
Tincher answered 7/1, 2020 at 15:43 Comment(0)
U
1

The proposed solution to hide only toolstrip border and not dropdownmenu border does not work.

This is what does the trick:

protected override void OnRenderToolStripBorder(ToolStripRenderEventArgs e)
    {
        //if (!(e.ToolStrip is ToolStrip)) base.OnRenderToolStripBorder(e); - does not work!
        if (e.ConnectedArea.Width != 0) base.OnRenderToolStripBorder(e);
    } 
Undercroft answered 31/3, 2023 at 8:23 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.