示例#1
0
文件: VCCLauncher.cs 项目: tupipa/vcc
 internal static void CustomVerify(string filename, VccOptionPage options)
 {
     using (var customVerifyForm = new CustomVerifyForm(GetArgumentsFromOptions(options, false)))
     {
         if (customVerifyForm.ShowDialog() == DialogResult.OK)
         {
             LaunchVCC(String.Format("{0} \"{1}\"", customVerifyForm.Arguments, filename));
         }
     }
 }
示例#2
0
 internal static void CustomVerify(string filename, VccOptionPage options)
 {
     using (var customVerifyForm = new CustomVerifyForm(GetArgumentsFromOptions(options, false)))
       {
     if (customVerifyForm.ShowDialog() == DialogResult.OK)
     {
       LaunchVCC(String.Format("{0} \"{1}\"", customVerifyForm.Arguments, filename));
     }
       }
 }