Mega Code Archive

 
Categories / C# by API / System Windows Forms
 

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