How do I create a message box with "Yes", "No" choices and a DialogResult?

Petr picture Petr · Jun 14, 2010 · Viewed 817k times · Source

I want to make simple Yes/No choiced MessageBox, but I think it is nonsense to design a form for that. I thought I could use MessageBox, add buttons, etc. to accomplish this. It is simple, but since there is no DialogResult returned, how do I retrieve the result?

Answer

Mikael Svenson picture Mikael Svenson · Jun 14, 2010

This should do it:

DialogResult dialogResult = MessageBox.Show("Sure", "Some Title", MessageBoxButtons.YesNo);
if(dialogResult == DialogResult.Yes)
{
    //do something
}
else if (dialogResult == DialogResult.No)
{
    //do something else
}