我在应用程序中有一个用户表单。一些字段已经过验证。如果字段的值不正确,则为该控件绘制红色边框。它是通过处理此控件的Paint事件来完成的。我扩展了TextFieldDateTimePicker以从那些类对象获取Paint事件。我在NumericUpDown类上遇到问题。它确实触发了Paint事件,但调用了

ControlPaint.DrawBorder(e.Graphics, eClipRectangle, Color.Red, ButtonBorderStyle.Solid);


完全不执行任何操作。有什么想法或建议吗?如果找不到任何方法,我将添加一个面板来容纳NumericUpDown控件,并且将更改其背景颜色。

每次处理程序挂接到Paint事件时,我都会调用control.Invalidate()进行重绘。

最佳答案

尝试这个:

public class NumericUpDownEx : NumericUpDown
{
    bool isValid = true;
    int[] validValues = new int[] { 1, 2, 3, 4, 5, 6, 7, 8, 9 };

    protected override void OnPaint(PaintEventArgs e)
    {
        base.OnPaint(e);

        if (!isValid)
        {
            ControlPaint.DrawBorder(e.Graphics, this.ClientRectangle, Color.Red, ButtonBorderStyle.Solid);
        }
    }

    protected override void OnValueChanged(System.EventArgs e)
    {
        base.OnValueChanged(e);

        isValid = validValues.Contains((int)this.Value);
        this.Invalidate();
    }
}


假设您输入的是int而不是十进制。您的有效性检查可能会有所不同,但这对我有用。如果新值不在定义的有效值内,它将在整个NumbericUpDown周围绘制一个红色边框。

诀窍是确保在调用base.OnPaint之后进行边框绘制。否则,边框将被绘制。从NumericUpDown继承而不是分配其Paint事件可能更好,因为重写OnPaint方法可以完全控制绘画顺序。

关于c# - 为NumericUpDown绘制边框,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/14725328/

10-17 01:21