示例#1
0
        public frmContainer()
        {
            InitializeComponent();

            // Create a new instance of the child form.
            MdiBasic.frmChild child = new MdiBasic.frmChild(this);

            // Show the form.
            child.Show();
        }
示例#2
0
        public frmContainer()
        {
            //
            // Required for Windows Form Designer support
            //
            InitializeComponent();
            MdiBasic.frmChild child = new MdiBasic.frmChild(this);

            // Show the form
            child.Show();

            //
            // TODO: Add any constructor code after InitializeComponent call
            //
        }