If you control the source code for it, then just write a static method to create an instance of itself by creating a new instance and setting all of the important properties. public MyUserControl CreateCopy(MyUserControl copy) { // modify copy return copy; } Mark the best replies as ans...
* Support for optimized and non-optimized move. When performing drag-move operations, it is now possible to specify if the target (optimized move) or the source (non-optimized move) is responsible for deleting the source files. * Support for delete-on-paste. When data is cut to the ...
I want to create tabpages at runtime and copy the data from the first tabpage to the newly generated ones. Currently I am doing at a button click, generation of a new tab and saying Panel1.Parent=tab(current) "tab" is an array of tabpages. problem : If I do the above when I...