我正在制作一些实用程序类,它们可以将不同类型的符号放置在 CAD 图纸的立面上。我想确保如果我需要处理我这样做的 GraphicsPath 对象。
在 getCircle 函数内部的以下代码中,它显示我正在将 myPath“GraphicsPath”对象传递给 AddStringToPath 函数。
我不能为此使用 using(){} 范围,因为我将 myPath 图形对象作为引用传递。
这种设计可以使用还是我需要采用不同的方式来确保垃圾收集?
GraphicsPath getCircle(Graphics dc, string text = "")
{
GraphicsPath myPath = new GraphicsPath();
myPath.AddEllipse(symbolCircle);
AddStringToPath(dc, ref myPath, text);
return myPath;
}
void AddStringToPath(Graphics dc, ref GraphicsPath path, string text)
{
SizeF textSize = dc.MeasureString(text, elevFont);
var centerX = (path.GetBounds().Width / 2) - (textSize.Width / 2);
var centerY = (path.GetBounds().Height / 2) - (textSize.Height / 2);
// Add the string to the path.
path.AddString(text,
elevFont.FontFamily,
(int)elevFont.Style,
elevFont.Size,
new PointF(centerX + 2, centerY + 2),
StringFormat.GenericDefault);
}