Example #1
0
        private void barButtonItem2_ItemClick(object sender, DevExpress.XtraBars.ItemClickEventArgs e)
        {
            Form frm = this.checkExists(typeof(FormLL11));

            if (frm != null)
            {
                frm.Activate();
            }
            else
            {
                FormLL11 f = new FormLL11(this);
                f.MdiParent = this;
                f.Show();
            }
        }
Example #2
0
        private void FormLenLop_Load(object sender, EventArgs e)
        {
            FormLL10 f10 = new FormLL10(this);

            f10.MdiParent = this;
            f10.Show();

            FormLL11 f11 = new FormLL11(this);

            f11.MdiParent = this;
            f11.Show();

            FormLL12 f12 = new FormLL12(this);

            f12.MdiParent = this;
            f12.Show();

            f10.Activate();
        }
Example #3
0
 public FormSLHS11(FormLL11 formLL11)
 {
     InitializeComponent();
     this.formLL11 = formLL11;
 }
Example #4
0
 public FormTienTrinhLL(FormLL11 formLL11)
 {
     InitializeComponent();
     this.formLL11 = formLL11;
 }