Just add a new form and put buttons and a label.Give the value to be shown and text of button etc in its constructor and call it from anywhere you want in the project
In project -> Add Component ->Windows Form and select a form
Put some label and buttons
Initialize the value in constructor and call it from anywhere.
public class form1:System.Windows.Forms.Form
{
public form1(){
}
public form1(string message,string buttonText1,string buttonText2)
{
lblMessage.Text=message;
button1.Text=buttonText1;
button2.Text=buttonText2;
}
}
//Write code for button1 and button2 's click event inorder to call from any where in your current project.
//Calling
Form1 frm=new Form1("message to show","buttontext1","buttontext2");
frm.ShowDialog();