消息框按钮文本
我环顾四周,似乎所有内容都可以在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你不能直接这样做。如果没有创建自己的 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.您可以使用 MessageBoxButton 枚举提供的任何按钮。如果您想要不同的东西,您必须编写一个自定义对话框。
You can use whatever buttons are offered by the MessageBoxButton enum. If you want something different, you have to write a custom dialog.