MessageBoxButtons.OK : MessageBoxButtons « System.Windows.Forms « C# / C Sharp by API






MessageBoxButtons.OK

 

using System;
using System.Windows.Forms;
using System.Drawing;

public class DropButton {
  static void Main() {
    MessageBox.Show("You clicked the Drop button", "Button Clicked",
            MessageBoxButtons.OK, MessageBoxIcon.Information);
  }
}


           

   
  








Related examples in the same category

1.MessageBoxButtons.YesNo