Pop up a form in C#.NET. How to create a new form on click event using c# or any .NET language.

POPUP FORM C#

C# Tutorials

  

POPUP FORM C#

Learn Tutorials
Pop up a form in C#.NET. How to create a new form on click event using c# or any .NET language.

Example code for Popup form C#:
private void editButton_Click(object sender, System.EventArgs e)
      {
         EditForm ef = new EditForm(new OtherClassForm());
         ef.Show();
      }
This is example code for pop up a form in c#.net. how to create a new form on click event using c# or any .net language.