Exemple #1
0
        void view_members_Click(object sender, EventArgs e)
        {
            pnlops.Controls.Clear();
            mem_ctrl eu = new mem_ctrl();
            eu.Width = pnlops.Width;
            eu.Height = pnlops.Height;
            pnlops.Controls.Add(eu);

            //throw new NotImplementedException();
        }
Exemple #2
0
 private void LOAD_MEMBER_CONTROL()
 {
     pnlops.Controls.Clear();
     mem_ctrl c = new mem_ctrl();
     c.Width = pnlops.Width;
     c.Height = pnlops.Height;
     pnlops.Controls.Add(c);
 }