I have a long running method that must run on UI thread. (Devex - gridView.CopyToClipboard()
)
I do not need the UI to be responsive while c
There are several possible approaches
gridView.GetSelectedCells()
and then put their contents to the clipboard asynchronouslyIt would be more helpful if you've uploaded the GridView
library somewhere, so that we could look inside.