исправляет мелкие недороботки

This commit is contained in:
Maxim Slipenko 2022-05-24 15:37:05 +03:00
parent c1c87bd76d
commit 0b969c28b5
Signed by: Maks1mS
GPG Key ID: 7461AF39A8705FB8
8 changed files with 15 additions and 11 deletions

View File

@ -128,7 +128,7 @@ namespace AwesomeEmailExtractor
if (usersDataGridView.SelectedRows.Count > 0)
{
DialogResult result = MessageBox.Show("Вы уверены что хотите удалить аккаунты?", "Удаление аккаунтов", MessageBoxButtons.YesNo);
DialogResult result = MessageBox.Show("Вы уверены что хотите удалить аккаунты?", "Удаление аккаунтов", MessageBoxButtons.YesNo, MessageBoxIcon.Warning);
if (result == DialogResult.Yes)
{
@ -147,12 +147,12 @@ namespace AwesomeEmailExtractor
if (selfDelete)
{
DialogResult result2 = MessageBox.Show("Вы уверены что хотите удалить СВОЙ аккаунт?", "Удаление аккаунта", MessageBoxButtons.YesNo);
DialogResult result2 = MessageBox.Show("Вы уверены что хотите удалить СВОЙ аккаунт?", "Удаление аккаунта", MessageBoxButtons.YesNo, MessageBoxIcon.Warning);
if (result2 == DialogResult.Yes)
{
Globals.currentUser.Delete();
MessageBox.Show("Аккаунт удален!");
MessageBox.Show("Аккаунт удален!", "Аккаунт удален", MessageBoxButtons.OK, MessageBoxIcon.Information);
this.Close();
@ -171,7 +171,7 @@ namespace AwesomeEmailExtractor
}
else
{
MessageBox.Show("Выберите хотя бы одного пользователя для удаления!");
MessageBox.Show("Выберите хотя бы одного пользователя для удаления!", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
@ -179,7 +179,7 @@ namespace AwesomeEmailExtractor
{
if (journalDataGridView.SelectedRows.Count > 0)
{
DialogResult result = MessageBox.Show("Вы уверены что хотите удалить записи в журнале?", "Удаление записей в журнале", MessageBoxButtons.YesNo);
DialogResult result = MessageBox.Show("Вы уверены что хотите удалить записи в журнале?", "Удаление записей в журнале", MessageBoxButtons.YesNo, MessageBoxIcon.Warning);
if (result == DialogResult.Yes)
{
@ -194,7 +194,7 @@ namespace AwesomeEmailExtractor
}
else
{
MessageBox.Show("Выберите хотя бы одну запись для удаления!");
MessageBox.Show("Выберите хотя бы одну запись для удаления!", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
}

View File

@ -23,7 +23,7 @@ namespace AwesomeEmailExtractor
{
if (string.IsNullOrEmpty(entryLogin.Text) || string.IsNullOrEmpty(entryPassword.Text))
{
MessageBox.Show("Введите логин и пароль");
MessageBox.Show("Введите логин и пароль", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
return;
}
@ -35,7 +35,7 @@ namespace AwesomeEmailExtractor
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}

View File

@ -131,6 +131,7 @@
this.Controls.Add(this.passwordTextBox);
this.Controls.Add(this.loginTextBox);
this.Controls.Add(this.idTextBox);
this.MaximizeBox = false;
this.Name = "EditUserForm";
this.Text = "Редактирование";
this.Load += new System.EventHandler(this.EditUserForm_Load);

1
HelpForm.Designer.cs generated
View File

@ -60,6 +60,7 @@
this.ClientSize = new System.Drawing.Size(652, 393);
this.Controls.Add(this.panel1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.MaximizeBox = false;
this.Name = "HelpForm";
this.Text = "Справка";
this.panel1.ResumeLayout(false);

4
MainForm.Designer.cs generated
View File

@ -91,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(361, 24);
this.resultCountLabel.Size = new System.Drawing.Size(363, 24);
this.resultCountLabel.TabIndex = 3;
this.resultCountLabel.Text = "Ввелите текст и нажмите \"Выполнить\"";
this.resultCountLabel.Text = "Введите текст и нажмите \"Выполнить\"";
//
// resultStatusStrip
//

View File

@ -139,6 +139,7 @@
this.Controls.Add(this.registerButton);
this.Controls.Add(this.loginButton);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.MaximizeBox = false;
this.Name = "RegistrationForm";
this.Text = "Зарегистрироваться";
this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.RegistrationForm_FormClosed);

View File

@ -41,7 +41,7 @@ namespace AwesomeEmailExtractor
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}

View File

@ -104,6 +104,7 @@
this.Controls.Add(this.entryNewPassword);
this.Controls.Add(this.changePasswordButton);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.MaximizeBox = false;
this.Name = "SettingsForm";
this.Text = "Настройки";
this.ResumeLayout(false);