gpt4 book ai didi

c# - 在偏移处绘制图形

转载 作者:太空狗 更新时间:2023-10-30 00:08:19 24 4
gpt4 key购买 nike

在我的代码中,假设我有 PaintObject(Graphics g)。在其他一些函数中,我想调用 PaintObject 函数在偏移处绘制一些东西,而不是在 (0,0) 处绘制。

我知道在 Java 中,我可以使用 Graphics.create(x, y, width, height) 函数来创建我可以使用的图形对象的副本,该副本将在原始图形的那些边界。有没有办法在 C# 中做类似的事情?

只是给你一个我的代码的例子:

class MyClass : UserControl {
void PaintObject(Graphics g) {
// Example: draw 10x10 rectangle
g.DrawRectangle(new Pen(Color.Black), 0, 0, 10, 10);
}

protected override void OnPaint(PaintEventArgs e) {
Graphics g = e.Graphics;
// TODO: Paint object from PaintObject() at offset (50, 50)
}
}

最佳答案

Graphics 对象上设置一个转换:

protected override void OnPaint(PaintEventArgs e) 
{
Graphics g = e.Graphics;

Matrix transformation = new Matrix();
transformation.Translate(50, 50);

g.Transform = transformation;
}

protected override void OnPaint(PaintEventArgs e) 
{
Graphics g = e.Graphics;
g.TranslateTransform(50, 50);
}

关于c# - 在偏移处绘制图形,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9854859/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com