예제 #1
0
 /// <summary>
 /// Menu - Display the About Window
 /// </summary>
 /// <param name="sender">The Sender</param>
 /// <param name="e">The EventArgs</param>
 private void MnuAboutHandBrake_Click(object sender, EventArgs e)
 {
     using (frmAbout About = new frmAbout())
     {
         About.ShowDialog();
     }
 }
예제 #2
0
파일: frmMain.cs 프로젝트: griff/HandBrake
 /// <summary>
 /// Menu - Display the About Window
 /// </summary>
 /// <param name="sender">
 /// The sender.
 /// </param>
 /// <param name="e">
 /// The e.
 /// </param>
 private void mnu_about_Click(object sender, EventArgs e)
 {
     using (frmAbout About = new frmAbout())
     {
         About.ShowDialog();
     }
 }