void miSettings_Click(object sender, EventArgs e) { SettingsForm settingsForm = new SettingsForm(); settingsForm.ShowDialog(); }
void MainForm_Load(object sender, EventArgs e) { this.loadingIndicator.Start(); this.postView.StartTransit(); if (Settings.Email == null) { SettingsForm settingsForm = new SettingsForm(); settingsForm.ShowDialog(); } if (Settings.Email != null) { this.posts.Clear(); this.currentView = 0; FetchDashboard(); } }