From 1124eb01affe535b00f0bb23bb12a1df5fe5fe4a Mon Sep 17 00:00:00 2001 From: Nikotro Date: Tue, 17 May 2022 21:40:01 +0300 Subject: [PATCH 1/3] =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=BB=D1=8F?= =?UTF-8?q?=D0=B5=D1=82=20=D0=BE=D0=BA=D0=BD=D0=BE=20=D0=B0=D0=B2=D1=82?= =?UTF-8?q?=D0=BE=D1=80=D0=B8=D0=B7=D0=B0=D1=86=D0=B8=D0=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .vs/AwesomeEmailExtractor/project-colors.json | 11 ++ Authorisation.Designer.cs | 46 +++++++ Authorisation.cs | 20 +++ Authorisation.resx | 120 ++++++++++++++++++ AwesomeEmailExtractor.csproj | 9 ++ 5 files changed, 206 insertions(+) create mode 100644 .vs/AwesomeEmailExtractor/project-colors.json create mode 100644 Authorisation.Designer.cs create mode 100644 Authorisation.cs create mode 100644 Authorisation.resx diff --git a/.vs/AwesomeEmailExtractor/project-colors.json b/.vs/AwesomeEmailExtractor/project-colors.json new file mode 100644 index 0000000..e49ce8c --- /dev/null +++ b/.vs/AwesomeEmailExtractor/project-colors.json @@ -0,0 +1,11 @@ +{ + "Version": 1, + "ProjectMap": { + "fe70a2f9-d831-462e-8705-b14623544f1c": { + "ProjectGuid": "fe70a2f9-d831-462e-8705-b14623544f1c", + "DisplayName": "AwesomeEmailExtractor", + "ColorIndex": 0 + } + }, + "NextColorIndex": 1 +} \ No newline at end of file diff --git a/Authorisation.Designer.cs b/Authorisation.Designer.cs new file mode 100644 index 0000000..8dad99e --- /dev/null +++ b/Authorisation.Designer.cs @@ -0,0 +1,46 @@ +namespace AwesomeEmailExtractor +{ + partial class Authorisation + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + this.SuspendLayout(); + // + // Authorisation + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(800, 450); + this.Name = "Authorisation"; + this.Text = "Authorisation"; + this.ResumeLayout(false); + + } + + #endregion + } +} \ No newline at end of file diff --git a/Authorisation.cs b/Authorisation.cs new file mode 100644 index 0000000..c6d8b8b --- /dev/null +++ b/Authorisation.cs @@ -0,0 +1,20 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace AwesomeEmailExtractor +{ + public partial class Authorisation : Form + { + public Authorisation() + { + InitializeComponent(); + } + } +} diff --git a/Authorisation.resx b/Authorisation.resx new file mode 100644 index 0000000..1af7de1 --- /dev/null +++ b/Authorisation.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/AwesomeEmailExtractor.csproj b/AwesomeEmailExtractor.csproj index 3ae428d..210e8cb 100644 --- a/AwesomeEmailExtractor.csproj +++ b/AwesomeEmailExtractor.csproj @@ -46,6 +46,12 @@ + + Form + + + Authorisation.cs + Form @@ -55,6 +61,9 @@ + + Authorisation.cs + MainForm.cs From 43f9cc859e5b416814dcda213a36bf56def6933c Mon Sep 17 00:00:00 2001 From: Nikotro Date: Wed, 18 May 2022 00:29:58 +0300 Subject: [PATCH 2/3] =?UTF-8?q?=D0=A1=D0=B4=D0=B5=D0=BB=D0=B0=D0=BB=D0=BD?= =?UTF-8?q?=D0=BE=20=D0=BE=D0=BA=D0=BD=D0=BE=20=D0=B0=D0=B2=D1=82=D0=BE?= =?UTF-8?q?=D1=80=D0=B8=D0=B7=D0=B0=D1=86=D0=B8=D0=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Authorisation.Designer.cs | 76 ++++++++++++++++++++++++++++++++++++++- Authorisation.cs | 1 + 2 files changed, 76 insertions(+), 1 deletion(-) diff --git a/Authorisation.Designer.cs b/Authorisation.Designer.cs index 8dad99e..900c295 100644 --- a/Authorisation.Designer.cs +++ b/Authorisation.Designer.cs @@ -28,19 +28,93 @@ /// private void InitializeComponent() { + this.loginButton = new System.Windows.Forms.Button(); + this.registerButton = new System.Windows.Forms.Button(); + this.entryLogin = new System.Windows.Forms.TextBox(); + this.label1 = new System.Windows.Forms.Label(); + this.label2 = new System.Windows.Forms.Label(); + this.entryPassword = new System.Windows.Forms.TextBox(); this.SuspendLayout(); // + // loginButton + // + this.loginButton.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204))); + this.loginButton.Location = new System.Drawing.Point(12, 127); + this.loginButton.Name = "loginButton"; + this.loginButton.Size = new System.Drawing.Size(293, 23); + this.loginButton.TabIndex = 0; + this.loginButton.Text = "Авторизоваться"; + this.loginButton.UseVisualStyleBackColor = true; + // + // registerButton + // + this.registerButton.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204))); + this.registerButton.Location = new System.Drawing.Point(12, 156); + this.registerButton.Name = "registerButton"; + this.registerButton.Size = new System.Drawing.Size(293, 23); + this.registerButton.TabIndex = 1; + this.registerButton.Text = "Зарегистрироваться"; + this.registerButton.UseVisualStyleBackColor = true; + // + // entryLogin + // + this.entryLogin.Location = new System.Drawing.Point(110, 32); + this.entryLogin.Name = "entryLogin"; + this.entryLogin.Size = new System.Drawing.Size(195, 20); + this.entryLogin.TabIndex = 2; + // + // label1 + // + this.label1.AutoSize = true; + this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204))); + this.label1.Location = new System.Drawing.Point(12, 30); + this.label1.Name = "label1"; + this.label1.Size = new System.Drawing.Size(77, 25); + this.label1.TabIndex = 3; + this.label1.Text = "Логин:"; + // + // label2 + // + this.label2.AutoSize = true; + this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204))); + this.label2.Location = new System.Drawing.Point(12, 77); + this.label2.Name = "label2"; + this.label2.Size = new System.Drawing.Size(92, 25); + this.label2.TabIndex = 5; + this.label2.Text = "Пароль:"; + // + // entryPassword + // + this.entryPassword.Location = new System.Drawing.Point(110, 79); + this.entryPassword.Name = "entryPassword"; + this.entryPassword.Size = new System.Drawing.Size(195, 20); + this.entryPassword.TabIndex = 4; + // // Authorisation // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.ClientSize = new System.Drawing.Size(800, 450); + this.ClientSize = new System.Drawing.Size(317, 191); + this.Controls.Add(this.label2); + this.Controls.Add(this.entryPassword); + this.Controls.Add(this.label1); + this.Controls.Add(this.entryLogin); + this.Controls.Add(this.registerButton); + this.Controls.Add(this.loginButton); this.Name = "Authorisation"; this.Text = "Authorisation"; this.ResumeLayout(false); + this.PerformLayout(); } #endregion + + private System.Windows.Forms.Button loginButton; + private System.Windows.Forms.Button registerButton; + private System.Windows.Forms.TextBox entryLogin; + private System.Windows.Forms.Label label1; + private System.Windows.Forms.Label label2; + private System.Windows.Forms.TextBox entryPassword; } } \ No newline at end of file diff --git a/Authorisation.cs b/Authorisation.cs index c6d8b8b..a35c077 100644 --- a/Authorisation.cs +++ b/Authorisation.cs @@ -16,5 +16,6 @@ namespace AwesomeEmailExtractor { InitializeComponent(); } + } } From 613315a9881ecce8d0c756437ccbdd4778d7d06e Mon Sep 17 00:00:00 2001 From: Maxim Slipenko Date: Sun, 22 May 2022 07:19:14 +0300 Subject: [PATCH 3/3] =?UTF-8?q?=D0=BF=D0=B5=D1=80=D0=B5=D0=B8=D0=BC=D0=B5?= =?UTF-8?q?=D0=BD=D0=BE=D0=B2=D1=8B=D0=B2=D0=B0=D0=B5=D1=82=20=D1=84=D0=B0?= =?UTF-8?q?=D0=B9=D0=BB=20Autorisation=20>AuthorizationForm?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...sation.Designer.cs => AuthorizationForm.Designer.cs | 8 ++++---- Authorisation.cs => AuthorizationForm.cs | 4 ++-- Authorisation.resx => AuthorizationForm.resx | 0 AwesomeEmailExtractor.csproj | 10 +++++----- 4 files changed, 11 insertions(+), 11 deletions(-) rename Authorisation.Designer.cs => AuthorizationForm.Designer.cs (96%) rename Authorisation.cs => AuthorizationForm.cs (79%) rename Authorisation.resx => AuthorizationForm.resx (100%) diff --git a/Authorisation.Designer.cs b/AuthorizationForm.Designer.cs similarity index 96% rename from Authorisation.Designer.cs rename to AuthorizationForm.Designer.cs index 900c295..88bda87 100644 --- a/Authorisation.Designer.cs +++ b/AuthorizationForm.Designer.cs @@ -1,6 +1,6 @@ namespace AwesomeEmailExtractor { - partial class Authorisation + partial class AuthorizationForm { /// /// Required designer variable. @@ -90,7 +90,7 @@ this.entryPassword.Size = new System.Drawing.Size(195, 20); this.entryPassword.TabIndex = 4; // - // Authorisation + // AuthorizationForm // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; @@ -101,8 +101,8 @@ this.Controls.Add(this.entryLogin); this.Controls.Add(this.registerButton); this.Controls.Add(this.loginButton); - this.Name = "Authorisation"; - this.Text = "Authorisation"; + this.Name = "AuthorizationForm"; + this.Text = "Авторизоваться"; this.ResumeLayout(false); this.PerformLayout(); diff --git a/Authorisation.cs b/AuthorizationForm.cs similarity index 79% rename from Authorisation.cs rename to AuthorizationForm.cs index a35c077..5c3193b 100644 --- a/Authorisation.cs +++ b/AuthorizationForm.cs @@ -10,9 +10,9 @@ using System.Windows.Forms; namespace AwesomeEmailExtractor { - public partial class Authorisation : Form + public partial class AuthorizationForm : Form { - public Authorisation() + public AuthorizationForm() { InitializeComponent(); } diff --git a/Authorisation.resx b/AuthorizationForm.resx similarity index 100% rename from Authorisation.resx rename to AuthorizationForm.resx diff --git a/AwesomeEmailExtractor.csproj b/AwesomeEmailExtractor.csproj index 210e8cb..250de0e 100644 --- a/AwesomeEmailExtractor.csproj +++ b/AwesomeEmailExtractor.csproj @@ -46,11 +46,11 @@ - + Form - - Authorisation.cs + + AuthorizationForm.cs @@ -61,8 +61,8 @@ - - Authorisation.cs + + AuthorizationForm.cs MainForm.cs