0

我正在使用控件绘制事件在我的应用程序中绘制图形对象。所有对象的大小都以毫米为单位存储,因此我使用“毫米”作为图形对象的 PageUnit。出于某种原因,当我使用 DashStyle 而非实体绘制形状时,它会以非常意外的比例绘制。

在下面的代码示例中,我希望看到两条线都被绘制在另一条之上,但我得到的是红色虚线在其他地方以更大的比例绘制。

知道我缺少什么吗?

using System;
using System.Drawing;
using System.Drawing.Drawing2D;
using System.Text;
using System.Windows.Forms;

namespace WindowsFormsApplication6
{
    public partial class Form1 : Form
    {
        private Pen solidBlackPen = new Pen(Color.Black, 1);
        private Pen dashedRedPen = new Pen(Color.Red, 1) { 
                                          DashStyle = DashStyle.Dash 
                                       };

        private Point point1 = new Point(5, 5);
        private Point point2 = new Point(35, 5);

        public Form1()
        {
            InitializeComponent();

            this.BackColor = Color.White;
            this.Paint += new PaintEventHandler(Form1_Paint);
        }

        private void Form1_Paint(object sender, PaintEventArgs e)
        {
            e.Graphics.PageUnit = GraphicsUnit.Millimeter;

            e.Graphics.DrawLine(solidBlackPen, point1, point2);
            e.Graphics.DrawLine(dashedRedPen, point1, point2);
        }

    }
}

由于我是新人,我无法上传屏幕截图。

4

1 回答 1

0

经过几次测试,这在我看来就像某种错误,只发生在特定的操作系统/框架上。

设法解决这个问题的是在绘制形状之前添加以下行:

e.Graphics.ScaleTransform(1, 1);
于 2012-08-31T11:43:27.587 回答