I have a form which will open a new form when one button (form1button) is clicked. And on the child form there will be another button 'form2button'. Now if I click this form2button the new form2 should be disposed. But because the form2 object is created here in form1 class method, I cannot dispose that object in form2 class method (fom2buttonclick). So I used static to get my work done as in the following psuedo code.
Form1:
class form1:form
{
static form2 f2;
public form1_buttonclick()
{
f2=new form2();
}
public disposef2()
{
f2.dispose();
}
}
Form2:
class form2:form
{
public form2_buttonclick()
{
form1 f1 = new form1();
f1.disposef2();
}
}
Is there any other better way to do it. Or C# design itself doesnot provide an alternative mechanism. I am new to C#.Please help me out.. Thanks in advance
Edit I want to close(dispose explicitely) form2 object which is created in form1 class when button on form2 is clicked. This edit is to give some more clarity.
