public ConfigureWizard_Page_ImportSettings(ConfigureWizard wizard)
        {
            InitializeComponent();
            this.wizard = wizard;

            multipleEntriesTextBox.ButtonClick += new EventHandler(OnMultipleEntriesTextBoxButtonClick);
        }
示例#2
0
        private static void HistoryImportBackgroundCallback(object objState)
        {
            // Running in a background thread, wrapper to call ConfigureWizard.HistoryImport()
            ConfigureWizard wizard = (ConfigureWizard)objState;

            wizard.HistoryImport();
        }
        private void OnConfigureButtonClick(object sender, EventArgs e)
        {
            ConfigureWizard wizard = new ConfigureWizard();

            wizard.ThemeChanged(theme);
            wizard.ShowDialog();
            ExtendSettingsPages.RefreshSettings();
        }
        public ConfigureWizard_Page_SelectUser(ConfigureWizard wizard)
        {
            InitializeComponent();
            this.wizard = wizard;

            usersList.Columns.Add(new TreeList.Column());
            usersList.SelectedItemsChanged += new EventHandler(OnUsersListSelectedItemsChanged);
        }
示例#5
0
        public ConfigureWizard_Page_SelectUser(ConfigureWizard wizard)
        {
            InitializeComponent();
            this.wizard = wizard;

            usersList.Columns.Add(new TreeList.Column());
            usersList.SelectedItemsChanged += new EventHandler(OnUsersListSelectedItemsChanged);
        }
示例#6
0
        public ConfigureWizard_Page_AccountInfo(ConfigureWizard wizard)
        {
            InitializeComponent();
            this.wizard         = wizard;
            accountTextBox.Text = wizard.Settings.Email;

            accountTextBox.TextChanged  += new EventHandler(OnAccountTextBoxTextChanged);
            passwordTextBox.TextChanged += new EventHandler(OnPasswordTextBoxTextChanged);
        }
示例#7
0
        public ConfigureWizard_Page_ImportHistory(ConfigureWizard wizard)
        {
            InitializeComponent();
            this.wizard = wizard;

            animation.Images = new Image[] {
                Properties.Resources.progress_1,
                Properties.Resources.progress_2,
                Properties.Resources.progress_3,
                Properties.Resources.progress_4,
                Properties.Resources.progress_5,
                Properties.Resources.progress_6,
                Properties.Resources.progress_7,
                Properties.Resources.progress_8,
                Properties.Resources.progress_9,
                Properties.Resources.progress_10,
                Properties.Resources.progress_11,
                Properties.Resources.progress_12,
            };
        }
        public ConfigureWizard_Page_ImportHistory(ConfigureWizard wizard)
        {
            InitializeComponent();
            this.wizard = wizard;

            animation.Images = new Image[] {
                Properties.Resources.progress_1,
                Properties.Resources.progress_2,
                Properties.Resources.progress_3,
                Properties.Resources.progress_4,
                Properties.Resources.progress_5,
                Properties.Resources.progress_6,
                Properties.Resources.progress_7,
                Properties.Resources.progress_8,
                Properties.Resources.progress_9,
                Properties.Resources.progress_10,
                Properties.Resources.progress_11,
                Properties.Resources.progress_12,
            };
        }
 private void OnConfigureButtonClick(object sender, EventArgs e)
 {
     ConfigureWizard wizard = new ConfigureWizard();
     wizard.ThemeChanged(theme);
     wizard.ShowDialog();
     ExtendSettingsPages.RefreshSettings();
 }