我经常需要在对象中绘制项目,Graphics
而我一直这样做的方式是拥有一个DrawItem
接收Graphics
对象和一个offsetX
和offsetY
参数的函数,这些参数确定将在哪个点绘制项目。
问题是,DrawItem
如果有一种方法Graphics
可以给我一个 X 和 Y 轴零点在其他点的图形版本,那么里面的代码看起来会好很多,比如myGraphics.DisplacedGraphics(offsetX, offsetY)
. 这样,我只需将此Graphics
对象传递给我的DrawItem
方法,该方法不需要接收其他两个参数。有没有这样的功能或最接近的东西是什么?
编辑:与此同时,这是我写的,但似乎是一个基本要求,我仍然希望已经存在这样的功能(我仍然需要添加一堆方法,但这些都是我现在所需要的)(注意DisplacedCanvas
方法):
public class Canvas
{
private readonly Graphics _Graphics;
private readonly int _OriginX = 0;
private readonly int _OriginY = 0;
public Canvas(Graphics graphics, int originX, int originY)
{
_Graphics = graphics;
_OriginX = originX;
_OriginY = originY;
}
public Canvas(Graphics graphics) : this(graphics, 0, 0) { }
public SizeF MeasureString(string text, Font font)
{
return _Graphics.MeasureString(text, font);
}
public void FillRectangle(Brush brush, int x, int y, int width, int height)
{
_Graphics.FillRectangle(brush, _OriginX + x, _OriginY + y, width, height);
}
public void DrawString(string s, Font font, Brush brush, float x, float y)
{
_Graphics.DrawString(s, font, brush, _OriginX + x, _OriginY + y);
}
public Canvas DisplacedCanvas(int x, int y)
{
return new Canvas(_Graphics, _OriginX + x, _OriginY + y);
}
}