public ConfigureWizard_Page_ImportSettings(ConfigureWizard wizard) { InitializeComponent(); this.wizard = wizard; multipleEntriesTextBox.ButtonClick += new EventHandler(OnMultipleEntriesTextBoxButtonClick); }
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); }
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); }
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, }; }