我的 winform c# 项目有问题。在我的项目中,我有两个主要功能,一个在运行时制作按钮,另一个功能允许我在运行时移动表单上的按钮。现在,如果我在其他按钮上有按钮,我该怎么办,所以我制作了替换按钮位置的功能,但如果有人可以帮助我,该功能会出现问题,那就太好了!
public void upandunder(Button cBtn1, Button cBtn2)
{
if ((cBtn1.Location.X == cBtn2.Location.X) && (cBtn1.Location.Y == cBtn2.Location.Y))
{
int placex = cBtn1.Location.X;
int placey = cBtn1.Location.Y;
cBtn1.Location.X = cBtn2.Location.Y;
cBtn1.Location.Y = cBtn2.Location.Y;
cBtn2.Location.X = placex;
cBtn2.Location.Y = placey;
}
}