Moving a picture that is inside a PictureBox to another PictureBox?

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 its Image property to null (or, of course, you can assign any other image of your choice). Like so.

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 its Image property to null (or, of course, you can assign any other image of your choice). Like so: //Assign the image in one picture box to another picture box mySecondPicBox.

Image = myFirstPicBox. Image; //Clear the image from the original picture box myFirstPicBox. Image = null; 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: //Temporarily store the picture currently displayed in the second picture box Image secondImage = mySecondPicBox.

Image; //Assign the image from the first picture box to the second picture box mySecondPicBox. Image = myFirstPicBox. Image; //Assign the image from the second picture box to the first picture box myFirstPicBox.

Image = secondImage.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions