Viladoman / CompileScore

Tools for profiling and visualizing C++ build times.
MIT License
460 stars 19 forks source link

Fix CLIPBRD_E_CANT_OPEN exception in DataGridRow_ContextMenu when cop… #46

Closed kjeong0 closed 1 year ago

kjeong0 commented 1 year ago

…ying to Clipboard

Switch Clipboard.SetText to Clipboard.SetDataObject which seems to handle clipboard contention better

https://learn.microsoft.com/en-us/dotnet/api/system.windows.forms.clipboard.setdataobject?view=windowsdesktop-8.0

References: https://stackoverflow.com/questions/12769264/openclipboard-failed-when-copy-pasting-data-from-wpf-datagrid https://stackoverflow.com/questions/10855940/wpf-datagrid-comexception-on-using-includeheader-clipboardcopymode

Viladoman commented 1 year ago

Thanks for the fix!