Exemplo n.º 1
0
        public RepairControl()
        {
            this.processControl = Program.CreateProcessControl();
            InitializeComponent();

            messageLabel.Text = InstallConfiguration.FormatString(messageLabel.Text);
        }
Exemplo n.º 2
0
 internal static InstallProcessControl CreateProcessControl()
 {
     InstallProcessControl control = new InstallProcessControl();
       control.Title = Resources.CommonUIStrings.controlTitleInstalling;
       control.SubTitle = Resources.CommonUIStrings.controlSubTitleInstalling;
       return control;
 }
Exemplo n.º 3
0
        public RepairControl()
        {
            this.processControl = Program.CreateProcessControl();
              InitializeComponent();

              messageLabel.Text = InstallConfiguration.FormatString(messageLabel.Text);
        }
Exemplo n.º 4
0
        internal static InstallProcessControl CreateProcessControl()
        {
            InstallProcessControl control = new InstallProcessControl();

            control.Title    = Resources.CommonUIStrings.controlTitleInstalling;
            control.SubTitle = Resources.CommonUIStrings.controlSubTitleInstalling;
            return(control);
        }
Exemplo n.º 5
0
        public UpgradeControl()
        {
            this.processControl = Program.CreateProcessControl();
              InitializeComponent();

              messageLabel.Text = InstallConfiguration.FormatString(messageLabel.Text);

              string upgradeDescription = InstallConfiguration.UpgradeDescription;
              if (upgradeDescription != null)
              {
            upgradeDescriptionLabel.Text = upgradeDescription;
              }
        }
Exemplo n.º 6
0
        public UpgradeControl()
        {
            this.processControl = Program.CreateProcessControl();
            InitializeComponent();

            messageLabel.Text = InstallConfiguration.FormatString(messageLabel.Text);

            string upgradeDescription = InstallConfiguration.UpgradeDescription;

            if (upgradeDescription != null)
            {
                upgradeDescriptionLabel.Text = upgradeDescription;
            }
        }