[Solved] c# open another form from current form button click [closed]


If you want to open a new form from button click of another form then you can do it like this.

 //Will be called on button click
 buttonClickEvent()
{
   NewForm objectForm = new NewForm();
   objectForm.Show();

}

This will bring other form in foreground.
If you are having another query then please try to share some codes as well as try to add more details on what you have tried and what you expect

1

solved c# open another form from current form button click [closed]