消息框按钮文本

发布于 2024-12-25 04:42:52 字数 396 浏览 1 评论 0原文

我环顾四周,似乎所有内容都可以在 MessageBox 中编辑,禁止按钮上的文本( WPF/C#)

MessageBox.Show("Generic Message", "Caption",
    MessageBoxButton.YesNoCancel, MessageBoxImage.Warning)

有没有办法更改“是”、“否”、“取消”文本,或者我是否需要编写一个窗口来充当 MessageBox 来完成此操作? (这样做没有任何问题;我只是想知道 WPF 中是否有办法)。

I've looked around and it appears that everything can be editable in a MessageBox, bar the text on the buttons (WPF/C#)

MessageBox.Show("Generic Message", "Caption",
    MessageBoxButton.YesNoCancel, MessageBoxImage.Warning)

Is there a way to change the "Yes", "No", "Cancel" text or do I need to write a window to function as a MessageBox to accomplish this? (There isn't any problem doing that; I am just wondering if there is a way in WPF).

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

鹿港巷口少年归 2025-01-01 04:42:52

你不能直接这样做。如果没有创建自己的 MessageBox,您可以使用 Win32.SetWindowText(),如 此处(将 VB.NET 代码此处)。如果您不想处理本机函数,那么自定义 MessageBox 将是最好的选择。

You can't do it directly. Short of creating your own MessageBox, you could use Win32.SetWindowText() as described here (convert the VB.NET code here). If you don't want to have to deal with native functions, then a custom MessageBox will be the best option.

似狗非友 2025-01-01 04:42:52

您可以使用 MessageBoxButton 枚举提供的任何按钮。如果您想要不同的东西,您必须编写一个自定义对话框。

You can use whatever buttons are offered by the MessageBoxButton enum. If you want something different, you have to write a custom dialog.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文