I have Form1
and in that form, i have this code
Form2 frm = new Form2();
frm.ShowDialog();
So now is my question: how to know if form2
is called by the way like that
in Button event in form2
?
In button event in form2
, I want to check if ShowDialog()
is called FROM FORM1 (NOT FROM ANOTHER FORM), if button is clicked, form2
is closed!