Example #1
0
 public void ShowWelcomeDialog()
 {
     if (Program.m_options.SilentInstall)
     {
         InstallerEngine.InstallAsync();
     }
     else
     {
         DebugLog("ShowWelcomeDialog starting");
         PanelWelcome panel = new PanelWelcome();
         panel.SetTitle(InstallerEngine.PackageTitle);
         ShowPanel(panel);
         DebugLog("ShowWelcomeDialog ending");
     }
 }
Example #2
0
 public void ShowWelcomeDialog()
 {
     if (Program.m_options.SilentInstall)
     InstallerEngine.InstallAsync();
       else
       {
     DebugLog("ShowWelcomeDialog starting");
     PanelWelcome panel = new PanelWelcome();
     panel.SetTitle(InstallerEngine.PackageTitle);
     ShowPanel(panel);
     DebugLog("ShowWelcomeDialog ending");
       }
 }