Graphics不会使用Line绘制GraphicsPath

时间:2014-03-29 19:31:44

标签: c# winforms graphics2d graphicspath

我有一个Windows窗体应用程序,我在其中添加不同的图形(矩形,圆形等)到主窗体。该图是UserControl,它是我用GraphicsPath定义的形状。 添加新图的方法:

 void AddElement(ShapeType shape, string guid)
    {
        Shape newShape = new Shape();
        newShape.Name = guid;
        newShape.Size = new Size(100, 100);           
        newShape.Type = shape;
        newShape.Location = new Point(100, 100);

        newShape.MouseDown += new MouseEventHandler(Shape_MouseDown);
        newShape.MouseMove += new MouseEventHandler(Shape_MouseMove);
        newShape.MouseUp += new MouseEventHandler(Shape_MouseUp);
        newShape.BackColor = this.BackColor;

        this.Controls.Add(newShape);
    }

在Shape(图)类中:

 private ShapeType shape;
 private GraphicsPath path = null;
 public ShapeType Type
    {
        get { return shape; }
        set
        {
            shape = value;
            DrawElement();
        }
    } 

 private void DrawElement()
     {
        path = new GraphicsPath();
        switch (shape)
        {
            case ShapeType.Rectangle:
                path.AddRectangle(this.ClientRectangle);
                break;

            case ShapeType.Circle:
                path.AddEllipse(this.ClientRectangle);
                break;

            case ShapeType.Line:
                path.AddLine(10,10,20,20);                   
                break;
        }
        this.Region = new Region(path);
    }

protected override void OnPaint(System.Windows.Forms.PaintEventArgs e)
    {
        if (path != null)
        {              
            e.Graphics.DrawPath(new Pen(Color.Black, 4), path);
        }
    }

调整图形大小时,我会重新绘制它:

 protected override void OnResize(System.EventArgs e)
    {
        DrawElement();
        this.Invalidate();
    }

当我添加矩形和圆形等形状时,一切正常。但是当我选择Line时,我的表单上没有任何内容。断点显示程序介于所有方法中,this.Controls.Add(newShape);也是如此。

我不明白为什么这不起作用。 我很感激任何建议。

2 个答案:

答案 0 :(得分:2)

您可以绘制使用细笔或粗笔打开GraphicsPath。但必须从封闭形状设置region,否则您的像素无法显示。这将有助于保持您的地区完好无损;但你需要知道,只是你想要它:

if (shape != ShapeType.Line)   this.Region = new Region(path);

如果您希望它像粗线一样,您必须创建一个多边形或一系列线来勾勒出您想要的形状。如果您希望您的线在该区域内,则需要两条路径:一条用于设置区域的闭合多边形路径和一条用于在区域内绘制线条的开放线路径。

修改 创建封闭路径的最佳方法可能是使用您正在使用的Pen的Widen()方法,如下所示:

GraphicsPath path2 = path.Widen(yourPen);

这样可以获得正确的厚度以及线帽,也适用于更复杂的折线;我没有试过它..

答案 1 :(得分:1)

也许是因为这条线没有区域。尝试用具有正面积的非常薄的形状替换它。例如:

const int thickness = 1;
path.AddLines(new[]
    {
        new Point(10, 10),
        new Point(20, 20),
        new Point(20 + thickness, 20 + thickness),
        new Point(10 + thickness, 10 + thickness)
    });