Example #1
0
 private void MovieImage_Click(object sender, EventArgs e)
 {
     MainForm.LoadMoviePage(Movie.Id);
 }
Example #2
0
 //Button that opens the movie page of the currently displayed movie
 private void MoreButton_Click(object sender, EventArgs e)
 {
     //Load the Movie Page on main window
     MainForm.LoadMoviePage(Movie.Id);
     this.Close();
 }