Say I have a listview control in tabPage1 which has all preset property. Possible to copy all values and put it into tabPage2?
I am using the stupid method, which is
newlistview1.size=listview1.size
newlistview1.color=listview1.color
etc
Say I have a listview control in tabPage1 which has all preset property. Possible to copy all values and put it into tabPage2?
I am using the stupid method, which is
newlistview1.size=listview1.size
newlistview1.color=listview1.color
etc
You can do that using
System.Reflection
It is possible to copy all the properties of a certain control? (C# window forms)
Hope this helps