예제 #1
0
 public LoginGUI(MainGUI m, MyCartForm mcf)
 {
     InitializeComponent();
     this.m   = m;
     this.mcf = mcf;
     checkMCF = true;
     checkLogin();
 }
예제 #2
0
파일: AlbumGUI.cs 프로젝트: tvad0905/PRN292
        private void btMyCart_Click(object sender, EventArgs e)
        {
            MyCartForm mc = new MyCartForm(dt_list, this.a, this.m, this);

            mc.ShowDialog();
        }