MessageBox with button and information icon
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace WindowsApplication2
{
public partial class Form2 : Form
{
public Form2()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
MessageBox.Show("success data enter.", "Information", MessageBoxButtons.OK, MessageBoxIcon.Information);
}
}
}
Post a Comment for "MessageBox with button and information icon"