我正在尝试使用 GraphicsPath 列表而不是数组,因为我不知道用户将创建的路径数。
List<GraphicsPath> PathDB = new List<GraphicsPath>();
在此之后,我填写列表如下:
using(GraphicsPath myPath = new GraphicsPath())
{
myPath.AddPolygon(myPoints);
PathDB.Add(myPath);
}
但是当我尝试使用列表中的 GraphicsPath 时,虽然 Count 属性是正确的,但由于参数异常,我无法使用如下所示的对象。
num = PathDB.Count;
for(int k=0; k < num; k++)
{
using(GraphicsPath myCurrentPath = new GraphicsPath())
{
myCurrentPath = PathDB[k];
myCurrentPath.AddLine(0,0,400,400); //at this stage exception is thrown
myGraphics.DrawPath(myPen, myCurrentPath)
}
}
是否与 GraphicsPath 被 Disposabe 相关?还是smt做错了?