[Solved] c# open another form from current form button click [closed]
[ad_1] 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 … Read more