我已经使用
画了椭圆g.DrawEllipse(p, 0, 0, 100, 100);
p = new Pen(Color.Red, 1f);
这是我移动picturbox的代码
int x, y;
private void timer1_Tick(object sender, EventArgs e)
{
y+=5;
x += 2;
pictureBox3.Location = new Point(x, y);
Invalidate();
}
图片框正确移动... 但我想... 如何在该椭圆内移动Picturebox? 椭圆应该固定一个..