private void BtnCourseOverview_Click(object sender, EventArgs e)
        {
            var form = new CourseOverview();

            form.MdiParent = this.MdiParent;
            form.Show();
        }
 public CoursesList(CourseOverview courseOverview) : this()
 {
     _parent = courseOverview;
 }
Esempio n. 3
0
 public EditCourseDetails(CourseOverview courseOverview, bool isNewCourse = false) : this()
 {
     _parent      = courseOverview;
     _isNewCourse = isNewCourse;
     FormLoad();
 }