Inheritance: System.Windows.Forms.Form
Exemplo n.º 1
0
 public static bool Check()
 {
     CheckVC2010();
     CheckWinPcap();
     if (!VC2010Installed || !WinPcapInstalled)
     {
         Dependencies form = new Dependencies();
         DialogResult result = form.ShowDialog();
         return result == DialogResult.OK;
     }
     return true;
 }