Esempio n. 1
0
 public Form2(ref Account account)
 {
     InitializeComponent();
     this.account = account;
     this.Visible = true;
     child = new Form3(ref account, this);
 }
Esempio n. 2
0
 public void resetChild()
 {
     child = new Form3(ref account, this);
 }