Hi,
I want to Clone the XamDataGrid and do some changes which should not effect the Original
XamDataGrid.Basically i would like to add some fields to XamDataGrid dynamically apart from what it
already have and export the XamDataGrid to Excel.
Please advice me on this.
Thanks
Ramesh Babu.
I believe you can also use Serialization to deep copy.
I am not sure if that would work in your scenario, but you could save the customizations of the original grid, create a new one, bind to the same data source and load the customizations. Then make the changes and export.
Hope this helps.
Hello Ramesh,
You may be able to derive a custom class from the XamDataGrid and implement the ICloneable interface yourself. Hope this helps.