c# – 孩子继承了父母的外表

我创建了一个简单的自定义面板,使用ContainerControl作为我的基础.我添加了自定义属性来创建边框和渐变背景.如果我重写OnPaint和OnPaintBackground,则父级的所有子控件都将继承渐变和边框样式.作为一种解决方法,我使用了父类BackgroundImage属性,该属性工作正常但有一些随机怪癖.必须有一个更好的方法来解决这个问题,但我找不到解决方案.是否有任何Window API函数通过Interop或其他C#方法来解决这个问题?如果是这样,请提供一个例子.

编辑!这是被复制的样式(丑陋的例子但是重点):

编辑2!这是一个简单的硬编码ContainerControl,没有所有属性,设计器属性等.

public class Container : ContainerControl
{
    protected override void OnPaintBackground( PaintEventArgs e )
    {
        using ( var brush = new LinearGradientBrush( e.ClipRectangle, Color.Red, Color.Blue, LinearGradientMode.Vertical ) )
        {
            e.Graphics.FillRectangle( brush, e.ClipRectangle );
        }
    }
}

解决方法:

如果创建Label控件并将其BackColor属性设置为Color.Transparent,它将最终调用其父级的OnPaintBackground()实现.

如果你像这样修改Jon的例子:

var label = new Label { 
    Text = "Label",
    Location = new Point(20, 50),
    BackColor = Color.Transparent
};

然后,您将重现该问题.

但是,有一个简单的解决方法.问题来自于您创建线性渐变画笔的方式.由于您将e.ClipRectangle传递给其构造函数,因此渐变的形状将根据呈现的控件(容器或标签)而有所不同.另一方面,如果你传递容器的ClientRectangle,那么渐变将始终具有相同的形状,结果应该是您正在寻找的:

protected override void OnPaintBackground(PaintEventArgs e)
{
    using (var brush = new LinearGradientBrush(ClientRectangle,
           Color.Red, Color.Blue, LinearGradientMode.Vertical)) {
        e.Graphics.FillRectangle(brush, e.ClipRectangle);
    }
}

结果是:

上一篇:MUI 中 tab 顶部选项卡的使用


下一篇:HTML元素常用属性整理