Hi, I have a RadGridView which is setup to have:
RowVirtualization=True
ColumnVirtualization=True
SelectionMode=Extended
ClipboardCopymode=Cells,Header
AutoGenerateColumns=False
There are 6 columns in this grid all bound to strings similar to
<telerik:GridViewDataColumn Header="FirstName" DataMemberBinding="{Binding Name}">
I have populated the grid with ~60,000 records
Pressing ctrl+A to select all takes about 3 seconds (which I am ok with I guess)
My problem is pressing Ctrl+C to copy all the rows just freezes the UI and it never finishes (I force closed the app after about 5 minutes if I walk away for about 20 it finishes eventually)
Why does copying all these rows take so long? Is there a way I can speed it up?
I made sure I populated the grid completely first so all this time taken is purely the copy method?