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.
我已将图片框放在表单的中心,但我不知道如何使用按钮使其移动。
我需要在这个过程中使用一个类库,所以我的猜测是使用 if 结构是不可能的?
制作一个图片框和一个按钮
单击按钮的此代码应将您的框移到其当前位置左侧 10 处:
private void button1_Click(object sender, EventArgs e) { this.pictureBox1.Left = this.pictureBox1.Left - 10; }
您也可以使用this.pictureBox1.Top它来垂直移动它。
this.pictureBox1.Top
使它成为一个补充.Left或.Top使它朝着相反的方向发展。
.Left
.Top
这应该给你一个好的开始!