我正在尝试将按钮的位置保存在变量中,但我不知道该怎么做。由于代码显示了按钮的 x 和 y,我还可以分别保存 x 和 y 吗?
Console.WriteLine(button.Location);
<X=100,Y=100>
我希望它将 X 值保存在 var1 中,将 Y 值保存在 var2 中。
您可以将其保存为单个Point
或两个不同的整数:
Point location = button.Location;
int xLocation = button.Location.X;
int yLocation = button.Location.Y;
然后,您可以像这样恢复位置:
button.Location = location;
button.Location = new Point(xLocation, yLocation);
注意: Point
是一个struct
(值类型)所以改变location
不会改变。换句话说,这不会有任何影响:button.Location
Point location = button.Location;
location.X += 100;
你需要这样做:
Point location = button.Location;
location.X += 100;
button.Location = location;
或者
button.Location = new Point(button.Location.X + 100, button.Location.Y);
button.Location.X
会给你X值。button.Location.Y
会给你 Y 值。
所以,是的,您可以单独保存它们。
尝试:
Point loc = new Point(button.Location.X,button.Location.Y)