I've some controls, Textboxes which I am going to put on a PictureBox in run time. I mean i am going to reposition them during run time.
I need to change their parent from winform to picturebox. because i need transparency of textboxes and I can get it only by making that picturebox as it's parent.
But when I change their parent. e.g
textbox1.parent=picturebox1;
It changes their position too.
How can I prevent this from happening? How can I keep their location same as before?
something like this.
textbox1.location=location before...