Ejemplo n.º 1
0
        private void StudentList_Load(object sender, EventArgs e)
        {
            //SL_Add Add = new SL_Add();
            //Add.Owner = this;
            SL_List List = new SL_List();

            List.TopLevel   = false;
            List.AutoScroll = true;
            pnSList.Controls.Add(List);
            List.Show();
        }
Ejemplo n.º 2
0
        private void StudentList_Load(object sender, EventArgs e)
        {
            ChangeLanguages();
            SL_List List = new SL_List();

            List.Owner      = this;
            List.TopLevel   = false;
            List.AutoScroll = true;
            pnSList.Controls.Add(List);
            List.Show();
        }
Ejemplo n.º 3
0
        public void btnList_Click(object sender, EventArgs e)
        {
            btnEdit.Enabled   = true;
            btnDelete.Enabled = true;
            ///////////////Open Form StudentList/////////////////////////////
            DetectColorButton(1);
            pnSList.Controls.Clear();
            SL_List List = new SL_List();

            List.TopLevel   = false;
            List.AutoScroll = true;
            pnSList.Controls.Add(List);
            List.Show();
            //pnUnder.BackColor = Color.FromArgb(192, 64, 0);
        }