How to change text on Messagebox buttons?

14,228

As far as I am aware there is no way to change the default text on a MessageBox popup.

The easiest thing for you to do would be to create a simple form with a label and a couple of buttons. Here is a simple example you can use to drop into your code. You can customize the form as you wish.

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);
    }        
}

You can then call this from wherever you need to like this:

        CustomMessageBox customMessage = new CustomMessageBox(
            "Warning",
            "Are you sure you want to exit without saving?",
            "Yeah Sure!",
            "No Way!" 
            );
        customMessage.StartPosition = FormStartPosition.CenterParent;
        customMessage.ShowDialog();
Share:
14,228
Gowri
Author by

Gowri

Updated on June 22, 2022

Comments

  • Gowri
    Gowri almost 2 years

    This is my code that I use:

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

    I want to change the text on message box buttons is it possible?