コード例 #1
0
        private void DataGridView1_CellContentClick(object sender, DataGridViewCellEventArgs e)
        {
            Course           selected = courses[e.RowIndex];
            CourseViewWindow cvw      = new CourseViewWindow(selected);

            cvw.Show();
        }
コード例 #2
0
 public void InitData(Course course, List <Rating> ratings, CourseViewWindow cvw)
 {
     this.course  = course;
     this.ratings = ratings;
     this.cvw     = cvw;
     GetValuesFromCourses();
     InitGUI();
     InitGUI();
 }
コード例 #3
0
 public void InitData(Course course, List <Rating> ratings, CourseViewWindow cvw)
 {
     this.course  = course;
     this.ratings = ratings;
     this.cvw     = cvw;
     InitCourseProperties();
     InitComments();
     InitCommentPage(1);
 }