コード例 #1
0
ファイル: Form2.cs プロジェクト: jslvtr/atm_assignment
 public Form2(ref Account account)
 {
     InitializeComponent();
     this.account = account;
     this.Visible = true;
     child = new Form3(ref account, this);
 }
コード例 #2
0
ファイル: Form2.cs プロジェクト: jslvtr/atm_assignment
 public void resetChild()
 {
     child = new Form3(ref account, this);
 }