简体   繁体   中英

swap picturebox in drag and drop

Hi I've been trying to do a swap between two PictureBoxes with drag and drop, the code I'm using to do the drag and drop is C# Drag and Drop from one Picture box into Another

But I have 9 pictureboxes and i need the swap to be dynamic, cant manage to get the name of the picturebox from where the image is coming so i can do the swap, would love some help on the subject.

A global variable will do your thing like this;

PictureBox from;

when a drag starts from picturebox1 ;

From = picturebox1;

when a drag starts from picturebox2 ;

From = picturebox2;

when DragDrop a picturebox the from variable will be the images source

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM