更改Windows.Forms对话框上的("是")按钮标签

时间:2015-08-24 12:33:05

标签: c# winforms

到目前为止,我使用了这样的对话框:

dialogResult = 
       System.Windows.Forms.MessageBox.Show(
                                    Strings.MyString,
                                    Strings.MyTitle,
                                    System.Windows.Forms.MessageBoxButtons.YesNo,
                                    System.Windows.Forms.MessageBoxIcon.Warning);

现在,我被要求使用"刷新" &安培; "取消"按钮而不是"是" /"不"。

我可以制作"是"按钮显示"刷新"标签

1 个答案:

答案 0 :(得分:2)

不幸的是没有。您需要创建自己的自定义对话框并根据您的要求设置样式。