コード例 #1
0
ファイル: AllLoansForm.cs プロジェクト: eliyahu119/libaryApp
 //implenting singelton pattern to this class
 public static AllLoansForm Instance(Member member)
 {
     if (instance == null)
     {
         instance = new AllLoansForm();
     }
     instance.SetAsNewWindow(member);
     return(instance);
 }
コード例 #2
0
ファイル: MemberForm.cs プロジェクト: eliyahu119/libaryApp
 private void button1_Click(object sender, EventArgs e)
 {
     Utils.SwitchBetweenWindows(this, AllLoansForm.Instance(member));
 }