private void pictureBox1_Paint(object sender, PaintEventArgs e)
{
Point[] points2 = { new Point(100, 100), new Point(200, 100), new Point(150, 10) };
e.Graphics.FillPolygon(new SolidBrush(Color.Red), points2);
}
我想更改三角形的位置和大小。当我改变其中一个值时,它只是旋转它。