什么是绘制矩形,我该如何确定这个奇怪异常的原因?

What is, and how do I determine the cause of this strange exception with drawing a Rectangle?

我试图在自定义控件的 OnPaint 方法中绘制一个矩形。不是我不知道怎么做,只是这次我正在尝试正确地做到这一点(而不是每次调用 OnPaint 时都创建一个新的 Pen)。

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace SomeNamespace
{
    public partial class Window : Form
    {
        #region Designer Properties
        [Browsable(true), DisplayName("FormBorderColor"), Category("Appearance")]
        public Color FormBorderColor { get; set; }

        [Browsable(true), DisplayName("FormBorderThickness"), Category("Appearance")]
        public float FormBorderThickness { get; set; }

        #endregion

        private Pen formBorderPen;
        private Brush formBorderBrush;
        private Rectangle formBorderRectangle;

        public Window()
        {
            InitializeComponent();

            this.DoubleBuffered = true;

            this.SetStyle(ControlStyles.OptimizedDoubleBuffer, true);
            this.SetStyle(ControlStyles.UserPaint, true);
            this.SetStyle(ControlStyles.AllPaintingInWmPaint, true);
            this.SetStyle(ControlStyles.ResizeRedraw, true);

            this.SetStyle(ControlStyles.ContainerControl, true);
            this.SetStyle(ControlStyles.Selectable, true);

            // Initialize Border properties
            formBorderBrush = new SolidBrush(FormBorderColor);
            formBorderPen = new Pen(formBorderBrush, FormBorderThickness);
            formBorderRectangle = new Rectangle(0, 0, this.Width - (int)FormBorderThickness, this.Height - (int)FormBorderThickness);
        }

        protected override void OnPaint(PaintEventArgs paint)
        {
            switch(this.FormBorderStyle)
            {
                // If this FormBorderStyle is set to None, we can either
                // draw our own custom border, or no border at all.
                case FormBorderStyle.None:
                    // Draw Form Border if necessary.
                    Console.WriteLine(FormBorderColor);
                    Console.WriteLine(FormBorderThickness);

                    Console.WriteLine(formBorderBrush);
                    Console.WriteLine(formBorderPen);
                    Console.WriteLine(formBorderRectangle);

                    if(FormBorderThickness >= 1)
                    {
                        Console.WriteLine("Hooray?");
                        paint.Graphics.DrawRectangle(formBorderPen, formBorderRectangle);
                    }
                    else
                    {
                        Console.WriteLine("Can't draw border.");
                    }
                    break;
                default:
                    break;
            }

            base.OnPaint(paint);
        }
    }
}

...但是,我遇到了一堆异常,我相信这是因为某些值在我期望设置时没有设置。但我不知道在哪里设置值。

我将在这里进行一次盲目的尝试,并假设抛出这些异常是因为这些对象的值是在构造函数中设置的,但是,我不知道还能去哪里设置这些值。从我在 MSDN 上看到的所有内容来看,我认为我在正确的位置设置了值。


CustomEndCap 异常:

'formBorderPen.CustomEndCap' threw an exception of type 'System.ArgumentException'

CustomStartCap 异常:

'formBorderPen.CustomStartCap' threw an exception of type 'System.ArgumentException'

DashPattern 异常:

'formBorderPen.DashPattern' threw an exception of type 'System.OutOfMemoryException'

我不明白的是,为什么我会收到 这些 异常?我什至没有玩过 Caps 或 DashPatterns。为什么我手动设置的笔和画笔是空的?


对于 FormBorderThickness,您的笔号可能为零,这将导致您遇到的一些问题。

此外,如果您引用 Width 或 Height 等属性,则不应使用表单的构造函数,因为这些尺寸尚未完全确定。您应该为此使用 OnLoad 覆盖。

我个人只会创建这些笔并在 Paint 事件中处理它们,将它们保留在局部范围内。那个矩形也一样。

你说对象的值是空的,但你做的 Console.WriteLine 表明它们确实有值.. 并且您显示的异常似乎不是您应用程序中的异常。这些异常在 visual studio 检查器中。因为它试图显示对象所有成员的值。一些成员可能尚未初始化或处于无效状态,因此 visual studio 遇到异常.. 但由于您没有使用这些属性,因此对您的应用程序没有影响。