Exemple #1
0
        public void ShowProgressDialog()
        {
            if (Program.m_options.SilentInstall)
            {
                return;
            }

            DebugLog("ShowProgressDialog starting");
            PanelInstalling panel = new PanelInstalling();

            ShowPanel(panel);
            DebugLog("ShowProgressDialog ending");
        }
Exemple #2
0
        public void SetPercentComplete(int percentComplete)
        {
            if (Program.m_options.SilentInstall)
            {
                return;
            }

            PanelInstalling currentPanel = GetCurrentPanel() as PanelInstalling;

            if (currentPanel == null)
            {
                return;
            }

            currentPanel.setProgress(percentComplete);
        }
Exemple #3
0
        public void ShowProgressDialog()
        {
            if (Program.m_options.SilentInstall)
            return;

              DebugLog("ShowProgressDialog starting");
              PanelInstalling panel = new PanelInstalling();
              ShowPanel(panel);
              DebugLog("ShowProgressDialog ending");
        }