Ejemplo n.º 1
0
        private void NewForm()
        {
            frmOther frm = new frmOther();

            OtherForms.Add(frm);
            frm.Show();
        }
Ejemplo n.º 2
0
        private void NewForm()
        {
            //每新建一个窗体,就将其加入到OtherForms对象集合中
            frmOther frm = new frmOther();

            OtherForms.Add(frm);
            frm.Show();
        }
Ejemplo n.º 3
0
 private void NewForm()
 {
     frmOther frm = new frmOther();
     OtherForms.Add(frm);
     frm.Show();
 }