Ejemplo n.º 1
0
 private void CreateReservationList()
 {
     viewList = new reservationList(this);
     viewList.MdiParent = this;
     viewList.StartPosition = FormStartPosition.CenterParent;
     viewList.FormBorderStyle = FormBorderStyle.None;
     viewList.Dock = DockStyle.Fill;
 }
Ejemplo n.º 2
0
        public void CreateReservationListForm()
        {
            viewList = new reservationList(this);

            viewList.MdiParent = this;
            viewList.FormBorderStyle = FormBorderStyle.None;
            viewList.Dock = DockStyle.Fill;
            viewList.StartPosition = FormStartPosition.CenterParent;
            //customerListForm.WindowState = FormWindowState.Maximized;
            viewList.MaximizeBox = false;
            viewList.MinimizeBox = false;
            viewList.ShowIcon = false;
        }