MessageBox with OK button and information icon : MessageBox : GUI Windows Form C# Source Code


Custom Search

C# Source Code » GUI Windows Form » MessageBox »

 

MessageBox with OK button and information icon









    

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


           
       
    
   
  
   







HTML code for linking to this page:

Follow Navioo On Twitter

C# Source Code

 Navioo GUI Windows Form
» MessageBox