2

对于这个问题,我确实梳理了 Stackoverflow 中类似的问题来寻找答案。尽管他们中的很多人很有帮助,但他们并没有解决我的问题。我的程序使用 graphics.DrawLines 方法在 Winform 上绘制多边形,如下所示。

g.DrawLines(thepen,pts);

但这不断提高,“参数无效”,错误。因此,我将那行代码更改如下,看看它是否有任何不同。

g.DrawLines(new pen(color.Black),pts);

同样,它引发了同样的错误。pts 是 system.drawing.point 的数组,而 thepen 是 system.drawing.pen。

如果我完全注释掉它,我的程序就没有问题,它不会引发任何错误。然而,奇怪的是在过去的 3 或 4 个月内,相同的代码可以正常工作。从昨天开始,我似乎无法让它再次工作。

winform是否有需要设置的属性设置?

更新这是实际的绘制方法

method TMakerPoly.Draw;
var
  pts: Array of point;
  i:integer;
  theBrush1:HatchBrush;
  theBrush2:SolidBrush;
begin
  if (theBrushStyle = HatchStyle.Wave) then
     theBrush1 := new HatchBrush(theBrushStyle,Color.Transparent,color.Transparent)
  else if (theBrushStyle = HatchStyle.ZigZag) then
     thebrush2 := new SolidBrush(FillColor)
  else
     theBrush1 := new HatchBrush(theBrushStyle,FillColor,color.Transparent);

  if (thePen.DashStyle = DashStyle.Custom) then
    thepen.Color := Color.Transparent;

  pts := new point[pcount];

  if pcount >= 2 then
  begin
    if Active then
    begin
      for i := 0 to pcount-1 do
        pts[i] := point(points[i]);
      Translate(var pts,pcount);

      thepen.Color := EdgeColor(thepen.Color);
      fillColor := self.BackColor(FillColor);
      if visible then
      begin
        if filled then
        begin
            if theBrushStyle = HatchStyle.ZigZag then
                g.FillPolygon(theBrush2,pts)
            else 
                g.FillPolygon(thebrush1,pts);

            g.DrawPolygon(thepen, pts);
        end
        else
            g.DrawLines(thePen, pts);
      end;
    end
    else
    begin
      for i := 0 to pcount-1 do
        pts[i] := point(points[i]);

      if filled then
      begin
            if theBrushStyle = HatchStyle.ZigZag then
                g.FillPolygon(theBrush2,pts)
            else 
                g.FillPolygon(thebrush1,pts);

            g.DrawPolygon(thepen,pts);        
      end
      else
        g.DrawLines(new Pen(color.Black),pts);
    end;
  end;
end;

任何帮助或提示或线索将不胜感激。

4

1 回答 1

5

如果您的 pts 数组的点数少于 2,则会抛出参数无效错误。

确保您的数组有足够多的点来绘制线条。

于 2012-11-13T17:23:13.017 回答