Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用此代码上下移动形状(viewport是我绘制形状的地方)
viewport
float zoom = -viewport.Height * 0.20f; viewport.Offset(2f, zoom); Invalidate();
我也想左右移动,但我想不通
Offset方法以您在参数中指定的量来水平和垂直移动矩形。
2f您作为方法的第一个参数传递Offset,它负责矩形的水平(左右)移动。只要通过你需要的数量,你就完成了。
2f
Offset