本文介绍了如何允许在MessageBox中复制消息的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何才能让选择和消息框的文本复制在WPF?

How can I allow selecting and copying of text from MessageBox in WPF?

推荐答案

如果您不需要的选择文本的作为一项要求,只要使用System.Windows.Forms.MessageBox。它映射到系统默认的其中一个已经允许复制其内容与控制 + C

If you don't need selecting text as a requirement, just use System.Windows.Forms.MessageBox. It maps to the system-default one which already allows copying its contents with +.

这篇关于如何允许在MessageBox中复制消息的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-29 19:38