Matrix m = new Matrix();
 path = new GraphicsPath();Rectangle rect = new Rectangle(200, 200, 100, 100);
path.AddRectangle(rect);
         
m.Scale(2, 2, MatrixOrder.Append);
path.Transform(m);这样变 Rectangle rect 变成了(400,400,200,200);
 
怎么变成(200,200,200,200);又如何变成(100,100,200,200) 呢