更改Windows上的(“是”)按钮标签.对话框形式
本文关键字:标签 按钮 对话框 上的 Windows 更改 | 更新日期: 2023-09-27 18:09:37
到目前为止,我使用的对话框是这样的:
dialogResult =
System.Windows.Forms.MessageBox.Show(
Strings.MyString,
Strings.MyTitle,
System.Windows.Forms.MessageBoxButtons.YesNo,
System.Windows.Forms.MessageBoxIcon.Warning);
现在,我被要求使用"刷新"&"取消"按钮代替"是"/"否"。
我可以让"是"按钮显示"刷新"标签吗?
遗憾的是没有。您将需要创建自己的自定义对话框,并根据您的需求设置样式。