I want to move a TableLayoutPanel and all it's content over my Form. Moving itself is no Problem. I don't want to move the actual Control, when still holding down the Mouse Button but instead I want a faded out copy on my mouse.
My first idea was just to get a copy of the tlp, tweak a bit with Alpha. I've found this for copying my control, but this won't work with a tlp, because of the Settings.
Before I fix this code, i wanted to ask, if there is a easier Method for this. I don't need a working copy of my controls, only a visual copy.
My function should be a general function. I won't know which controls might get added into the tlp. Having a working copy might result in some unwanted events.
Is there a easy function to get a visual copy or do i really need to make a copy and remove all events from the controls of that copy?