示例#1
0
 private void _PatchToolToolStripMenuItem_Click(object sender, EventArgs e)
 {
     try
     {
         PatchForm patchForm = new PatchForm {
             MdiParent = this
         };
         patchForm.Show();
     }
     catch (Exception ex)
     {
         ExceptionLogger.LogException(ex);
     }
 }
示例#2
0
 private void _PatchToolToolStripMenuItem_Click(object sender, EventArgs e)
 {
     try
     {
         PatchForm patchForm = new PatchForm { MdiParent = this };
         patchForm.Show();
     }
     catch (Exception ex)
     {
         ExceptionLogger.LogException(ex);
     }
 }