尝试为 MenuStrip 着色时,左侧出现白色边框

Trying to color a MenuStrip, a white border appears on the left side

我正在创建一个表单,我希望菜单栏具有不同的颜色。关于这个有很多帖子,我设法改变了所有颜色,除了菜单左侧的白色 block/line。
我正在使用 .Net Core 3.1,Windows Forms 应用程序。

Exit ToolstripMenuItem 后面的白色块:使用分隔符时它会变宽。

以上菜单上的细白线。

我正在使用专业的渲染器来覆盖颜色。

public class DxColorTable : ToolStripProfessionalRenderer
{
    public DxColorTable(dynamic theme) : base(new DxCols(theme)) { }
}

public class DxCols : ProfessionalColorTable
{
    private readonly dynamic theme = DefaultTheme.Default;
    public DxCols(dynamic theme)
    {
        this.theme = theme;
    }

    public override Color MenuBorder
    {
        get { return this.theme.MenuSelectedColor; }
    }
    public override Color MenuItemBorder
    {
        get { return this.theme.MenuSelectedColor; }
    }
    public override Color MenuItemPressedGradientBegin
    {
        get { return this.theme.MenuSelectedColor; }
    }

    public override Color MenuItemPressedGradientEnd
    {
        get { return this.theme.MenuSelectedColor; }
    }
    public override Color MenuItemSelected
    {              
        get { return this.theme.MenuSelectedColor; }
    }
    public override Color MenuItemSelectedGradientBegin
    {            
        get { return this.theme.MenuSelectedColor; }
    }
    public override Color MenuItemSelectedGradientEnd
    {
        get { return this.theme.MenuSelectedColor; }
    }

    public override Color ToolStripBorder
    {
        get { return this.theme.MenuBackgroundColor; }
    }
    
    public override Color ToolStripDropDownBackground
    {
        get { return this.theme.MenuBackgroundColor; }
    }
    public override Color ToolStripGradientBegin
    {
        get { return this.theme.MenuBackgroundColor; }
    }
    public override Color ToolStripGradientEnd
    {
        get { return this.theme.MenuBackgroundColor; }
    }
    public override Color ToolStripGradientMiddle
    {
        get { return this.theme.MenuBackgroundColor; }
    }

    public override Color ToolStripContentPanelGradientBegin
    {
        get
        {
            return this.theme.MenuBackgroundColor; 
        }
    }

    public override Color ToolStripContentPanelGradientEnd
    {
        get
        {
            return this.theme.MenuBackgroundColor;
        }
    }
}

您忘记覆盖定义图像边距区域的三个属性。
您需要为 ImageMarginGradient 部分指定颜色值。

当您添加 ToolStripComboBox 或 ToolStripSeparator 时,它特别明显。请注意,它不会影响标准的 ToolStripMenuItems,即使它们显示图像,并且已经在设计器中设置了背景颜色。

public override Color ImageMarginGradientBegin => this.theme.MenuBackgroundColor;
public override Color ImageMarginGradientMiddle => this.theme.MenuBackgroundColor;
public override Color ImageMarginGradientEnd => this.theme.MenuBackgroundColor; 

如果不需要显示图片,可以隐藏图片边距区域:

([Your ToolStripMenuItem].DropDown as ToolStripDropDownMenu).ShowImageMargin = false;