Get result from a MessageBox : MessageBox « GUI Windows Forms « C# / CSharp Tutorial






using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;

public class MainClass
{
    public static void Main(){

        DialogResult result = MessageBox.Show("Close?", "Really quit?",
            MessageBoxButtons.YesNo, MessageBoxIcon.Question);
        if (result == DialogResult.No)
            Console.WriteLine("NO");
        else{
            Console.WriteLine("Yes");
        }    
    }
}
Yes








23.44.MessageBox
23.44.1.Simplest MessageBox
23.44.2.Get result from a MessageBox
23.44.3.Display MessageBox in Button event
23.44.4.Call Show method to display a MessageBox
23.44.5.Show method with message and window title
23.44.6.Show method with button and icon settings