GraphicsPath.AddPath

AddPath(GraphicsPath)

将指定的GraphicsPath追加到此路径。

public void AddPath(GraphicsPath addingPath)
参数类型描述
addingPathGraphicsPath要添加的GraphicsPath

另请参见


AddPath(GraphicsPath, bool)

将指定的GraphicsPath追加到此路径。

public void AddPath(GraphicsPath addingPath, bool connect)
参数类型描述
addingPathGraphicsPath要添加的GraphicsPath
连接Boolean一个布尔值,指定添加的路径中的第一个图形是否是此路径中最后一个图形的一部分。值为 true 表示添加的路径中的第一个图形是此路径中最后一个图形的一部分。值为 false 表示添加的路径中的第一个图形与此路径中最后一个图形分离。

另请参见