showControl() public static method

public static showControl ( Control control, Control panel ) : void
control System.Windows.Forms.Control
panel System.Windows.Forms.Control
return void
        private void LoadDashboard()
        {
            Lecturer_Dashboard ld = new Lecturer_Dashboard(email);

            User_Control_Class.showControl(ld, mid_panel);
        }
示例#2
0
        private void LoadDashboard()
        {
            Student_Dashboard sd = new Student_Dashboard(email);

            User_Control_Class.showControl(sd, mid_panel);
        }