From a50fbd9892c6a9999e8af3d333b36d632833f17e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9D=D0=B8=D0=BA=D0=B8=D1=82=D0=B0=20=D0=A8=D0=B8=D0=BF?= =?UTF-8?q?=D0=B8=D0=BB=D0=BE=D0=B2?= <116575516+LAYT73@users.noreply.github.com> Date: Sun, 27 Oct 2024 16:41:46 +0400 Subject: [PATCH] =?UTF-8?q?=D0=9D=D0=BE=D0=B2=D1=8B=D0=B9=20=D0=BF=D1=80?= =?UTF-8?q?=D0=BE=D0=B5=D0=BA=D1=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ProjectGasStation/ProjectGasStation.sln | 25 ++++ .../ProjectGasStation/Form1.Designer.cs | 39 ++++++ ProjectGasStation/ProjectGasStation/Form1.cs | 10 ++ .../ProjectGasStation/Form1.resx | 120 ++++++++++++++++++ .../ProjectGasStation/Program.cs | 17 +++ .../ProjectGasStation.csproj | 11 ++ 6 files changed, 222 insertions(+) create mode 100644 ProjectGasStation/ProjectGasStation.sln create mode 100644 ProjectGasStation/ProjectGasStation/Form1.Designer.cs create mode 100644 ProjectGasStation/ProjectGasStation/Form1.cs create mode 100644 ProjectGasStation/ProjectGasStation/Form1.resx create mode 100644 ProjectGasStation/ProjectGasStation/Program.cs create mode 100644 ProjectGasStation/ProjectGasStation/ProjectGasStation.csproj diff --git a/ProjectGasStation/ProjectGasStation.sln b/ProjectGasStation/ProjectGasStation.sln new file mode 100644 index 0000000..d3d5e2b --- /dev/null +++ b/ProjectGasStation/ProjectGasStation.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.8.34330.188 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ProjectGasStation", "ProjectGasStation\ProjectGasStation.csproj", "{D38C8DBF-0E55-4886-BE6B-0BBFB35874BA}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {D38C8DBF-0E55-4886-BE6B-0BBFB35874BA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {D38C8DBF-0E55-4886-BE6B-0BBFB35874BA}.Debug|Any CPU.Build.0 = Debug|Any CPU + {D38C8DBF-0E55-4886-BE6B-0BBFB35874BA}.Release|Any CPU.ActiveCfg = Release|Any CPU + {D38C8DBF-0E55-4886-BE6B-0BBFB35874BA}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {E20144D3-2295-4103-BD9D-74080E1BB7F7} + EndGlobalSection +EndGlobal diff --git a/ProjectGasStation/ProjectGasStation/Form1.Designer.cs b/ProjectGasStation/ProjectGasStation/Form1.Designer.cs new file mode 100644 index 0000000..84542cf --- /dev/null +++ b/ProjectGasStation/ProjectGasStation/Form1.Designer.cs @@ -0,0 +1,39 @@ +namespace ProjectGasStation +{ + partial class Form1 + { + /// + /// 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.components = new System.ComponentModel.Container(); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(800, 450); + this.Text = "Form1"; + } + + #endregion + } +} diff --git a/ProjectGasStation/ProjectGasStation/Form1.cs b/ProjectGasStation/ProjectGasStation/Form1.cs new file mode 100644 index 0000000..ccff989 --- /dev/null +++ b/ProjectGasStation/ProjectGasStation/Form1.cs @@ -0,0 +1,10 @@ +namespace ProjectGasStation +{ + public partial class Form1 : Form + { + public Form1() + { + InitializeComponent(); + } + } +} diff --git a/ProjectGasStation/ProjectGasStation/Form1.resx b/ProjectGasStation/ProjectGasStation/Form1.resx new file mode 100644 index 0000000..1af7de1 --- /dev/null +++ b/ProjectGasStation/ProjectGasStation/Form1.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/ProjectGasStation/ProjectGasStation/Program.cs b/ProjectGasStation/ProjectGasStation/Program.cs new file mode 100644 index 0000000..9830769 --- /dev/null +++ b/ProjectGasStation/ProjectGasStation/Program.cs @@ -0,0 +1,17 @@ +namespace ProjectGasStation +{ + internal static class Program + { + /// + /// The main entry point for the application. + /// + [STAThread] + static void Main() + { + // To customize application configuration such as set high DPI settings or default font, + // see https://aka.ms/applicationconfiguration. + ApplicationConfiguration.Initialize(); + Application.Run(new Form1()); + } + } +} \ No newline at end of file diff --git a/ProjectGasStation/ProjectGasStation/ProjectGasStation.csproj b/ProjectGasStation/ProjectGasStation/ProjectGasStation.csproj new file mode 100644 index 0000000..663fdb8 --- /dev/null +++ b/ProjectGasStation/ProjectGasStation/ProjectGasStation.csproj @@ -0,0 +1,11 @@ + + + + WinExe + net8.0-windows + enable + true + enable + + + \ No newline at end of file