WPF/C#: Proper implementation for closing/hiding the form while new form is opening
- by eibhrum
Hi,
I was looking something similar with winforms like
// in Form 1
this.Hide();
Form2 form = new Form2();
form.Show
// in Form 2
// if button pressed, Form 1 will be displayed, while Form 2 will be Hide.
I was trying my luck for FormEventHandler but doesn't know where to start.
Any suggestions/ideas?