From c1c87bd76da44df9be6f0c35660b98d02b8a84eb Mon Sep 17 00:00:00 2001 From: Maxim Slipenko Date: Tue, 24 May 2022 15:25:44 +0300 Subject: [PATCH] =?UTF-8?q?=D0=B8=D1=81=D0=BF=D1=80=D0=B0=D0=B2=D0=BB?= =?UTF-8?q?=D1=8F=D0=B5=D1=82=20MessageBox=20=D0=B8=20=D1=82=D0=B0=D0=B1?= =?UTF-8?q?=D0=BB=D0=B8=D1=86=D1=83=20=D0=B2=20=D0=B6=D1=83=D1=80=D0=BD?= =?UTF-8?q?=D0=B0=D0=BB=D0=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- EditUserForm.cs | 2 +- JournalForm.cs | 15 ++++++++++++--- MainForm.Designer.cs | 13 ++++--------- RegistrationForm.cs | 4 ++-- SettingsForm.cs | 10 +++++----- 5 files changed, 24 insertions(+), 20 deletions(-) diff --git a/EditUserForm.cs b/EditUserForm.cs index 91b4fbc..49a170b 100644 --- a/EditUserForm.cs +++ b/EditUserForm.cs @@ -37,7 +37,7 @@ namespace AwesomeEmailExtractor { if (loginTextBox.Text.Length == 0) { - MessageBox.Show("Логин не может быть пустым!"); + MessageBox.Show("Логин не может быть пустым!", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error); return; } diff --git a/JournalForm.cs b/JournalForm.cs index b45e7bd..fbec8ef 100644 --- a/JournalForm.cs +++ b/JournalForm.cs @@ -22,9 +22,18 @@ namespace AwesomeEmailExtractor var logs = Logs.GetLogsList(Globals.currentUser); dataGridView1.DataSource = logs; - // dataGridView1.Columns["id"].Visible = false; - // dataGridView1.Columns[1].Visible = false; - dataGridView1.Columns[4].AutoSizeMode = DataGridViewAutoSizeColumnMode.Fill; + + List columns = new List() { "Дата", "Событие", "Сообщение" }; + + dataGridView1.Columns["id"].Visible = false; + dataGridView1.Columns["user"].Visible = false; + + for (int i = 0; i < columns.Count; i++) + { + dataGridView1.Columns[i + 2].HeaderText = columns[i]; + }; + + dataGridView1.Columns["message"].AutoSizeMode = DataGridViewAutoSizeColumnMode.Fill; } private void dataGridView1_SelectionChanged(object sender, EventArgs e) diff --git a/MainForm.Designer.cs b/MainForm.Designer.cs index 78b89f7..1d8aaed 100644 --- a/MainForm.Designer.cs +++ b/MainForm.Designer.cs @@ -54,9 +54,6 @@ this.uniqueListBox.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204))); this.uniqueListBox.FormattingEnabled = true; this.uniqueListBox.ItemHeight = 20; - this.uniqueListBox.Items.AddRange(new object[] { - "alice@example.com", - "bob@example.com"}); this.uniqueListBox.Location = new System.Drawing.Point(424, 32); this.uniqueListBox.Name = "uniqueListBox"; this.uniqueListBox.Size = new System.Drawing.Size(225, 324); @@ -72,8 +69,7 @@ this.sourceRichTextBox.Name = "sourceRichTextBox"; this.sourceRichTextBox.Size = new System.Drawing.Size(406, 288); this.sourceRichTextBox.TabIndex = 1; - this.sourceRichTextBox.Text = "Алиса (alice@example.com) послылает Бобу (bob@example.com) сообщение.\nАдрес bob@e" + - "xample.com Алиса нашла на сайте example.com"; + this.sourceRichTextBox.Text = ""; // // executeButton // @@ -95,9 +91,9 @@ this.resultCountLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204))); this.resultCountLabel.Location = new System.Drawing.Point(12, 323); this.resultCountLabel.Name = "resultCountLabel"; - this.resultCountLabel.Size = new System.Drawing.Size(303, 24); + this.resultCountLabel.Size = new System.Drawing.Size(361, 24); this.resultCountLabel.TabIndex = 3; - this.resultCountLabel.Text = "Количество e-mail-ов в тексте: 3"; + this.resultCountLabel.Text = "Ввелите текст и нажмите \"Выполнить\""; // // resultStatusStrip // @@ -111,8 +107,7 @@ // toolStripStatusLabel // this.toolStripStatusLabel.Name = "toolStripStatusLabel"; - this.toolStripStatusLabel.Size = new System.Drawing.Size(42, 17); - this.toolStripStatusLabel.Text = "Успех!"; + this.toolStripStatusLabel.Size = new System.Drawing.Size(0, 17); // // menuStrip1 // diff --git a/RegistrationForm.cs b/RegistrationForm.cs index f576b67..5844b5e 100644 --- a/RegistrationForm.cs +++ b/RegistrationForm.cs @@ -21,13 +21,13 @@ namespace AwesomeEmailExtractor { if (string.IsNullOrEmpty(entryLogin.Text) || string.IsNullOrEmpty(entryPassword.Text)) { - MessageBox.Show("Введите логин и пароль!"); + MessageBox.Show("Введите логин и пароль!", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error); return; } if (!string.Equals(entryPassword.Text, entryRePassword.Text)) { - MessageBox.Show("Пароли не совпадают!"); + MessageBox.Show("Пароли не совпадают!", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error); return; } diff --git a/SettingsForm.cs b/SettingsForm.cs index 1cde078..d131561 100644 --- a/SettingsForm.cs +++ b/SettingsForm.cs @@ -19,13 +19,13 @@ namespace AwesomeEmailExtractor private void deleteAccountButton_Click(object sender, EventArgs e) { - DialogResult result = MessageBox.Show("Вы уверены что хотите удалить аккаунт?", "Удаление аккаунта", MessageBoxButtons.YesNo); + DialogResult result = MessageBox.Show("Вы уверены что хотите удалить аккаунт?", "Удаление аккаунта", MessageBoxButtons.YesNo, MessageBoxIcon.Warning); if (result == DialogResult.Yes) { Globals.currentUser.Delete(); Logs.Log(Globals.currentUser, Logs.Action.DeleteAccount, new Dictionary()); - MessageBox.Show("Аккаунт удален!"); + MessageBox.Show("Аккаунт удален!", "Аккаунт удален", MessageBoxButtons.OK, MessageBoxIcon.Information); this.Close(); @@ -38,19 +38,19 @@ namespace AwesomeEmailExtractor { if (string.IsNullOrEmpty(entryNewPassword.Text)) { - MessageBox.Show("Введите пароль!"); + MessageBox.Show("Введите пароль!", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error); return; } if (!string.Equals(entryNewPassword.Text, entryRePassword.Text)) { - MessageBox.Show("Пароли не совпадают!"); + MessageBox.Show("Пароли не совпадают!", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error); return; } Globals.currentUser.ChangePassword(entryNewPassword.Text); Logs.Log(Globals.currentUser, Logs.Action.ChangePassword, new Dictionary()); - MessageBox.Show("Пароль изменен!"); + MessageBox.Show("Пароль изменен!", "Пароль изменен", MessageBoxButtons.OK, MessageBoxIcon.Information); } } }