8

这是我使用的代码:

MessageBox.Show("Do you want to save changes..?", "Save",
    MessageBoxButtons.YesNoCancel);

我想更改消息框按钮上的文本可以吗?

4

2 回答 2

8

据我所知,无法更改 MessageBox 弹出窗口上的默认文本。

对您来说最简单的事情是创建一个带有标签和几个按钮的简单表单。这是一个简单的示例,您可以使用它来放入您的代码中。您可以根据需要自定义表单。

public class CustomMessageBox:System.Windows.Forms.Form
{
    Label message = new Label();
    Button b1 = new Button();
    Button b2 = new Button();

    public CustomMessageBox()
    {

    }

    public CustomMessageBox(string title, string body, string button1, string button2)
    {
        this.ClientSize = new System.Drawing.Size(490, 150);
        this.Text = title;

        b1.Location = new System.Drawing.Point(411, 112);
        b1.Size = new System.Drawing.Size(75, 23);
        b1.Text = button1;
        b1.BackColor = Control.DefaultBackColor;

        b2.Location = new System.Drawing.Point(311, 112);
        b2.Size = new System.Drawing.Size(75, 23);
        b2.Text = button2; 
        b2.BackColor = Control.DefaultBackColor;

        message.Location = new System.Drawing.Point(10, 10);
        message.Text = body;
        message.Font = Control.DefaultFont;
        message.AutoSize = true;

        this.BackColor = Color.White;
        this.ShowIcon = false;

        this.Controls.Add(b1);
        this.Controls.Add(b2);
        this.Controls.Add(message);
    }        
}

然后,您可以从任何需要的地方调用它:

        CustomMessageBox customMessage = new CustomMessageBox(
            "Warning",
            "Are you sure you want to exit without saving?",
            "Yeah Sure!",
            "No Way!" 
            );
        customMessage.StartPosition = FormStartPosition.CenterParent;
        customMessage.ShowDialog();
于 2015-01-26T16:36:41.683 回答
0

我认为 MessageBox 是一个 Win32 API 野兽,这意味着它超出了 .NET 的范围。因此,它忽略了定制/本地化。所以你需要像 James Miller 建议的那样滚动你自己的消息框。

为什么 MS 决定不在 Forms 中放置支持 .NET 的消息框,这超出了我的理解……

于 2015-01-27T09:34:15.033 回答