将 PictureBox 内的图片移动到另一个 PictureBox
如何将图片框中的图片移动到另一个图片框?
我想用它来移动棋子。我为每个地方都有一个拍摄的图片盒,所以我有 64 个图片盒。
How can I move a picture that is inside a picturebox to another picturebox?
I want to use it for moving the pieces of chess game. I have a took picturebox for each place, so I have 64 pictureboxes.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您只需分配
将一个图片框中显示的图片复制到另一个图片框中。如果您随后想将图片从原图片框中删除(这样就不会显示两次),您可以设置其将
Image
属性设置为null
(当然,您可以指定您选择的任何其他图像)。像这样:如果要交换两个图片框中显示的图像,则需要将其中一个图片对象临时存储在变量中。因此,您可以使用非常相似的代码,只需稍作修改:
You can just assign the
Image
displayed in one picture box to another picture box. If you then want to remove the image from the original picture box (so that it is not displayed twice), you can set itsImage
property tonull
(or, of course, you can assign any other image of your choice). Like so:If you want to swap the images displayed in two picture boxes, you need to temporarily store one of the picture objects in a variable. So you can use very similar code, with a slight modification: