How can I allow selecting and copying of text from MessageBox in WPF?
If you're displaying the messagebox...
System.Windows.Forms.Clipboard.SetDataObject(messageToShowInMsgBoxString, true);
will copy the item to the clipboard.