How can I allow selecting and copying of text from MessageBox in WPF?
You can just use Ctrl+C while the message box has focus, but it will give you a lot more text than just the error message.
e.g.
MessageBox.Show("Message", "Message Title", MessageBoxButton.OK);
Would copy and paste as:
---------------------------
Message Title
---------------------------
Message
---------------------------
OK
---------------------------