如何使它我的图片框[可以移动]重叠它应该移动的图片框?

时间:2013-12-29 03:09:09

标签: c# winforms picturebox

今天我正在测试我的游戏,并想知道如何在梯子上移动(你用箭头键控制picturebox1,梯子是picturebox2),玩家在梯子上移动,就像你在梯子的边界上移动,你走到梯子的“下面”,我想做到这样你就“爬过”梯子。这是一张走在梯子下面的图片:Picture of the form

这甚至可能吗?另外,我希望在代码中执行此操作,感谢您的时间! 注意:播放器是红色立方体

1 个答案:

答案 0 :(得分:0)

非常简单。试试这个

PictureBox Ladder = new PictureBox();
...setting the picture and it's location...
PictureBox Player = new PictureBox();
...setting the picture and it's location...
Ladder.SendToBack();
or...
Player.BringToFront();

玩家控制将在阶梯之前绘制。