📜  更改对象位置 - C# 代码示例

📅  最后修改于: 2022-03-11 14:48:39.280000             🧑  作者: Mango

代码示例1
//sets the coordinates of the upper-left corner of the control relative to the upper-left corner of its container.
panel1.Location = new Point(56,72);
panel1.Size = new Size(264, 152);