C# Taking Action by MessageBox OK Button

In C# Windows applications, below is a code example for action when pressing the OK button in the MessageBox alert box.


    var result = MessageBox.Show(@"Are You Sure?", @"Warning", 
                        MessageBoxButtons.OKCancel, 
                        MessageBoxIcon.Information);
             
  if (result.Equals(DialogResult.OK))
  {                   
        //Do Something
  } 

In our example, we first set the properties of our "MessageBox". Then we prepared our "if" block about what to do if the "OK" button is pressed.



You May Interest

C# Finding Tangent of an Angle

C# Finding Cosine of an Angle

C# Finding the Path to the Windows Folder

Finding the Index Order of a Character in a String in C#

C# Finding the Computer Name