From 1124eb01affe535b00f0bb23bb12a1df5fe5fe4a Mon Sep 17 00:00:00 2001 From: Nikotro Date: Tue, 17 May 2022 21:40:01 +0300 Subject: [PATCH] =?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