124 lines
5.6 KiB
C#
124 lines
5.6 KiB
C#
namespace AwesomeEmailExtractor
|
|
{
|
|
partial class SettingsForm
|
|
{
|
|
/// <summary>
|
|
/// Required designer variable.
|
|
/// </summary>
|
|
private System.ComponentModel.IContainer components = null;
|
|
|
|
/// <summary>
|
|
/// Clean up any resources being used.
|
|
/// </summary>
|
|
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
|
protected override void Dispose(bool disposing)
|
|
{
|
|
if (disposing && (components != null))
|
|
{
|
|
components.Dispose();
|
|
}
|
|
base.Dispose(disposing);
|
|
}
|
|
|
|
#region Windows Form Designer generated code
|
|
|
|
/// <summary>
|
|
/// Required method for Designer support - do not modify
|
|
/// the contents of this method with the code editor.
|
|
/// </summary>
|
|
private void InitializeComponent()
|
|
{
|
|
this.changePasswordButton = new System.Windows.Forms.Button();
|
|
this.entryNewPassword = new System.Windows.Forms.TextBox();
|
|
this.label2 = new System.Windows.Forms.Label();
|
|
this.label3 = new System.Windows.Forms.Label();
|
|
this.entryRePassword = new System.Windows.Forms.TextBox();
|
|
this.deleteAccountButton = new System.Windows.Forms.Button();
|
|
this.SuspendLayout();
|
|
//
|
|
// changePasswordButton
|
|
//
|
|
this.changePasswordButton.Location = new System.Drawing.Point(34, 96);
|
|
this.changePasswordButton.Name = "changePasswordButton";
|
|
this.changePasswordButton.Size = new System.Drawing.Size(275, 26);
|
|
this.changePasswordButton.TabIndex = 0;
|
|
this.changePasswordButton.Text = "Изменить пароль";
|
|
this.changePasswordButton.UseVisualStyleBackColor = true;
|
|
this.changePasswordButton.Click += new System.EventHandler(this.changePasswordButton_Click);
|
|
//
|
|
// entryNewPassword
|
|
//
|
|
this.entryNewPassword.Location = new System.Drawing.Point(158, 12);
|
|
this.entryNewPassword.Name = "entryNewPassword";
|
|
this.entryNewPassword.Size = new System.Drawing.Size(151, 20);
|
|
this.entryNewPassword.TabIndex = 2;
|
|
this.entryNewPassword.UseSystemPasswordChar = true;
|
|
//
|
|
// label2
|
|
//
|
|
this.label2.AutoSize = true;
|
|
this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
|
|
this.label2.Location = new System.Drawing.Point(30, 12);
|
|
this.label2.Name = "label2";
|
|
this.label2.Size = new System.Drawing.Size(118, 20);
|
|
this.label2.TabIndex = 4;
|
|
this.label2.Text = "Новый пароль";
|
|
//
|
|
// label3
|
|
//
|
|
this.label3.AutoSize = true;
|
|
this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
|
|
this.label3.Location = new System.Drawing.Point(30, 53);
|
|
this.label3.Name = "label3";
|
|
this.label3.Size = new System.Drawing.Size(125, 20);
|
|
this.label3.TabIndex = 5;
|
|
this.label3.Text = "Повтор пароля";
|
|
//
|
|
// entryRePassword
|
|
//
|
|
this.entryRePassword.Location = new System.Drawing.Point(158, 53);
|
|
this.entryRePassword.Name = "entryRePassword";
|
|
this.entryRePassword.Size = new System.Drawing.Size(151, 20);
|
|
this.entryRePassword.TabIndex = 6;
|
|
this.entryRePassword.UseSystemPasswordChar = true;
|
|
//
|
|
// deleteAccountButton
|
|
//
|
|
this.deleteAccountButton.Location = new System.Drawing.Point(34, 137);
|
|
this.deleteAccountButton.Name = "deleteAccountButton";
|
|
this.deleteAccountButton.Size = new System.Drawing.Size(275, 26);
|
|
this.deleteAccountButton.TabIndex = 7;
|
|
this.deleteAccountButton.Text = "Удалить аккаунт";
|
|
this.deleteAccountButton.UseVisualStyleBackColor = true;
|
|
this.deleteAccountButton.Click += new System.EventHandler(this.deleteAccountButton_Click);
|
|
//
|
|
// SettingsForm
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(338, 184);
|
|
this.Controls.Add(this.deleteAccountButton);
|
|
this.Controls.Add(this.entryRePassword);
|
|
this.Controls.Add(this.label3);
|
|
this.Controls.Add(this.label2);
|
|
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);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Button changePasswordButton;
|
|
private System.Windows.Forms.TextBox entryNewPassword;
|
|
private System.Windows.Forms.Label label2;
|
|
private System.Windows.Forms.Label label3;
|
|
private System.Windows.Forms.TextBox entryRePassword;
|
|
private System.Windows.Forms.Button deleteAccountButton;
|
|
}
|
|
} |