исправляет MessageBox и таблицу в журнале
This commit is contained in:
parent
a18bfb6e52
commit
c1c87bd76d
@ -37,7 +37,7 @@ namespace AwesomeEmailExtractor
|
|||||||
{
|
{
|
||||||
if (loginTextBox.Text.Length == 0)
|
if (loginTextBox.Text.Length == 0)
|
||||||
{
|
{
|
||||||
MessageBox.Show("Логин не может быть пустым!");
|
MessageBox.Show("Логин не может быть пустым!", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -22,9 +22,18 @@ namespace AwesomeEmailExtractor
|
|||||||
var logs = Logs.GetLogsList(Globals.currentUser);
|
var logs = Logs.GetLogsList(Globals.currentUser);
|
||||||
|
|
||||||
dataGridView1.DataSource = logs;
|
dataGridView1.DataSource = logs;
|
||||||
// dataGridView1.Columns["id"].Visible = false;
|
|
||||||
// dataGridView1.Columns[1].Visible = false;
|
List<string> columns = new List<string>() { "Дата", "Событие", "Сообщение" };
|
||||||
dataGridView1.Columns[4].AutoSizeMode = DataGridViewAutoSizeColumnMode.Fill;
|
|
||||||
|
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)
|
private void dataGridView1_SelectionChanged(object sender, EventArgs e)
|
||||||
|
13
MainForm.Designer.cs
generated
13
MainForm.Designer.cs
generated
@ -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.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.FormattingEnabled = true;
|
||||||
this.uniqueListBox.ItemHeight = 20;
|
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.Location = new System.Drawing.Point(424, 32);
|
||||||
this.uniqueListBox.Name = "uniqueListBox";
|
this.uniqueListBox.Name = "uniqueListBox";
|
||||||
this.uniqueListBox.Size = new System.Drawing.Size(225, 324);
|
this.uniqueListBox.Size = new System.Drawing.Size(225, 324);
|
||||||
@ -72,8 +69,7 @@
|
|||||||
this.sourceRichTextBox.Name = "sourceRichTextBox";
|
this.sourceRichTextBox.Name = "sourceRichTextBox";
|
||||||
this.sourceRichTextBox.Size = new System.Drawing.Size(406, 288);
|
this.sourceRichTextBox.Size = new System.Drawing.Size(406, 288);
|
||||||
this.sourceRichTextBox.TabIndex = 1;
|
this.sourceRichTextBox.TabIndex = 1;
|
||||||
this.sourceRichTextBox.Text = "Алиса (alice@example.com) послылает Бобу (bob@example.com) сообщение.\nАдрес bob@e" +
|
this.sourceRichTextBox.Text = "";
|
||||||
"xample.com Алиса нашла на сайте example.com";
|
|
||||||
//
|
//
|
||||||
// executeButton
|
// 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.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.Location = new System.Drawing.Point(12, 323);
|
||||||
this.resultCountLabel.Name = "resultCountLabel";
|
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.TabIndex = 3;
|
||||||
this.resultCountLabel.Text = "Количество e-mail-ов в тексте: 3";
|
this.resultCountLabel.Text = "Ввелите текст и нажмите \"Выполнить\"";
|
||||||
//
|
//
|
||||||
// resultStatusStrip
|
// resultStatusStrip
|
||||||
//
|
//
|
||||||
@ -111,8 +107,7 @@
|
|||||||
// toolStripStatusLabel
|
// toolStripStatusLabel
|
||||||
//
|
//
|
||||||
this.toolStripStatusLabel.Name = "toolStripStatusLabel";
|
this.toolStripStatusLabel.Name = "toolStripStatusLabel";
|
||||||
this.toolStripStatusLabel.Size = new System.Drawing.Size(42, 17);
|
this.toolStripStatusLabel.Size = new System.Drawing.Size(0, 17);
|
||||||
this.toolStripStatusLabel.Text = "Успех!";
|
|
||||||
//
|
//
|
||||||
// menuStrip1
|
// menuStrip1
|
||||||
//
|
//
|
||||||
|
@ -21,13 +21,13 @@ namespace AwesomeEmailExtractor
|
|||||||
{
|
{
|
||||||
if (string.IsNullOrEmpty(entryLogin.Text) || string.IsNullOrEmpty(entryPassword.Text))
|
if (string.IsNullOrEmpty(entryLogin.Text) || string.IsNullOrEmpty(entryPassword.Text))
|
||||||
{
|
{
|
||||||
MessageBox.Show("Введите логин и пароль!");
|
MessageBox.Show("Введите логин и пароль!", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!string.Equals(entryPassword.Text, entryRePassword.Text))
|
if (!string.Equals(entryPassword.Text, entryRePassword.Text))
|
||||||
{
|
{
|
||||||
MessageBox.Show("Пароли не совпадают!");
|
MessageBox.Show("Пароли не совпадают!", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -19,13 +19,13 @@ namespace AwesomeEmailExtractor
|
|||||||
|
|
||||||
private void deleteAccountButton_Click(object sender, EventArgs e)
|
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)
|
if (result == DialogResult.Yes)
|
||||||
{
|
{
|
||||||
Globals.currentUser.Delete();
|
Globals.currentUser.Delete();
|
||||||
Logs.Log(Globals.currentUser, Logs.Action.DeleteAccount, new Dictionary<string, object>());
|
Logs.Log(Globals.currentUser, Logs.Action.DeleteAccount, new Dictionary<string, object>());
|
||||||
MessageBox.Show("Аккаунт удален!");
|
MessageBox.Show("Аккаунт удален!", "Аккаунт удален", MessageBoxButtons.OK, MessageBoxIcon.Information);
|
||||||
|
|
||||||
this.Close();
|
this.Close();
|
||||||
|
|
||||||
@ -38,19 +38,19 @@ namespace AwesomeEmailExtractor
|
|||||||
{
|
{
|
||||||
if (string.IsNullOrEmpty(entryNewPassword.Text))
|
if (string.IsNullOrEmpty(entryNewPassword.Text))
|
||||||
{
|
{
|
||||||
MessageBox.Show("Введите пароль!");
|
MessageBox.Show("Введите пароль!", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!string.Equals(entryNewPassword.Text, entryRePassword.Text))
|
if (!string.Equals(entryNewPassword.Text, entryRePassword.Text))
|
||||||
{
|
{
|
||||||
MessageBox.Show("Пароли не совпадают!");
|
MessageBox.Show("Пароли не совпадают!", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
Globals.currentUser.ChangePassword(entryNewPassword.Text);
|
Globals.currentUser.ChangePassword(entryNewPassword.Text);
|
||||||
Logs.Log(Globals.currentUser, Logs.Action.ChangePassword, new Dictionary<string, object>());
|
Logs.Log(Globals.currentUser, Logs.Action.ChangePassword, new Dictionary<string, object>());
|
||||||
MessageBox.Show("Пароль изменен!");
|
MessageBox.Show("Пароль изменен!", "Пароль изменен", MessageBoxButtons.OK, MessageBoxIcon.Information);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user