исправляет MessageBox и таблицу в журнале

This commit is contained in:
Maxim Slipenko 2022-05-24 15:25:44 +03:00
parent a18bfb6e52
commit c1c87bd76d
Signed by: Maks1mS
GPG Key ID: 7461AF39A8705FB8
5 changed files with 24 additions and 20 deletions

View File

@ -37,7 +37,7 @@ namespace AwesomeEmailExtractor
{
if (loginTextBox.Text.Length == 0)
{
MessageBox.Show("Логин не может быть пустым!");
MessageBox.Show("Логин не может быть пустым!", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
return;
}

View File

@ -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<string> columns = new List<string>() { "Дата", "Событие", "Сообщение" };
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)

13
MainForm.Designer.cs generated
View File

@ -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
//

View File

@ -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;
}

View File

@ -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<string, object>());
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<string, object>());
MessageBox.Show("Пароль изменен!");
MessageBox.Show("Пароль изменен!", "Пароль изменен", MessageBoxButtons.OK, MessageBoxIcon.Information);
}
}
}