How to Move an Image to an other Panel

Example:

-Panel1

–>Image1

–>Image2

-Panel2

How do I move the Images into the Panel2 via C# Script? I just need an example.

Change the image’s transform parent by using myImage.transform.SetParent(panel2Transform).
Look at SetParent in the scripting API for more details and set the local values of the image’s transform after the call if needed.