Task progressTask;//= new Task(delegate { progressDisplayTask(); });
        //Task repoUpdateWorker2 = new Task(delegate { this.progressDisplayTask(); });
        public SampleWizardPage()
        {
            InitializeComponent();
            AsposeComponents components = new AsposeComponents();

            fillComponentsCombo();
        }
        public SampleWizardPage(DTE2 application)
        {
            _application = application;
            InitializeComponent();
            AsposeComponents components = new AsposeComponents();

            fillComponentsCombo();
            validateForm();
            textBoxLocation.Text = GetExamplesRootPath();
        }
        public ComponentWizardPage()
        {
            InitializeComponent();
            AsyncDownloadList.list.Clear();
            AsposeComponents components = new AsposeComponents();

            if (!GlobalData.isAutoOpened)
            {
                AbortButton.Text = "Close";
            }

            GlobalData.SelectedComponent = null;
            ContinueButton_Click(new object(), new EventArgs());
        }
Exemplo n.º 4
0
        public ComponentWizardPage()
        {
            InitializeComponent();
            InitializedCustomComponents();
            AsyncDownloadList.list.Clear();
            validateForm();
            AsposeComponents components = new AsposeComponents();

            progressBar.Visible            = false;
            toolStripStatusMessage.Visible = false;

            if (!GlobalData.isAutoOpened)
            {
                AbortButton.Text = "Close";
            }
        }