From 24e5427a93b9d5c9b9cbd04e5be37dd35cdfdd11 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B0=D0=BD=D0=B8=D0=B8=D0=BB=20=D0=9F=D1=83=D1=82?= =?UTF-8?q?=D0=B8=D0=BD=D1=86=D0=B5=D0=B2?= Date: Fri, 6 Sep 2024 11:04:45 +0400 Subject: [PATCH] InitialCommit --- COP/COP.sln | 31 ++++++ COP/PutincevLibrary/Class1.cs | 6 ++ COP/PutincevLibrary/PutincevLibrary.csproj | 10 ++ COP/WinForms/Form1.Designer.cs | 39 +++++++ COP/WinForms/Form1.cs | 10 ++ COP/WinForms/Form1.resx | 120 +++++++++++++++++++++ COP/WinForms/Program.cs | 17 +++ COP/WinForms/WinForms.csproj | 11 ++ 8 files changed, 244 insertions(+) create mode 100644 COP/COP.sln create mode 100644 COP/PutincevLibrary/Class1.cs create mode 100644 COP/PutincevLibrary/PutincevLibrary.csproj create mode 100644 COP/WinForms/Form1.Designer.cs create mode 100644 COP/WinForms/Form1.cs create mode 100644 COP/WinForms/Form1.resx create mode 100644 COP/WinForms/Program.cs create mode 100644 COP/WinForms/WinForms.csproj diff --git a/COP/COP.sln b/COP/COP.sln new file mode 100644 index 0000000..b1d5ede --- /dev/null +++ b/COP/COP.sln @@ -0,0 +1,31 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.10.35004.147 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PutincevLibrary", "PutincevLibrary\PutincevLibrary.csproj", "{BF0238D4-F38A-4670-8479-E8F6FE980F15}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WinForms", "WinForms\WinForms.csproj", "{2DC08E58-4198-4F93-8CF2-ECE1A757AF61}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {BF0238D4-F38A-4670-8479-E8F6FE980F15}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {BF0238D4-F38A-4670-8479-E8F6FE980F15}.Debug|Any CPU.Build.0 = Debug|Any CPU + {BF0238D4-F38A-4670-8479-E8F6FE980F15}.Release|Any CPU.ActiveCfg = Release|Any CPU + {BF0238D4-F38A-4670-8479-E8F6FE980F15}.Release|Any CPU.Build.0 = Release|Any CPU + {2DC08E58-4198-4F93-8CF2-ECE1A757AF61}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {2DC08E58-4198-4F93-8CF2-ECE1A757AF61}.Debug|Any CPU.Build.0 = Debug|Any CPU + {2DC08E58-4198-4F93-8CF2-ECE1A757AF61}.Release|Any CPU.ActiveCfg = Release|Any CPU + {2DC08E58-4198-4F93-8CF2-ECE1A757AF61}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {A6940976-22B7-4CA4-9069-D45C1A94432D} + EndGlobalSection +EndGlobal diff --git a/COP/PutincevLibrary/Class1.cs b/COP/PutincevLibrary/Class1.cs new file mode 100644 index 0000000..c3db447 --- /dev/null +++ b/COP/PutincevLibrary/Class1.cs @@ -0,0 +1,6 @@ +namespace PutincevLibrary +{ + public class Class1 + { + } +} diff --git a/COP/PutincevLibrary/PutincevLibrary.csproj b/COP/PutincevLibrary/PutincevLibrary.csproj new file mode 100644 index 0000000..060aa1c --- /dev/null +++ b/COP/PutincevLibrary/PutincevLibrary.csproj @@ -0,0 +1,10 @@ + + + + net6.0-windows + enable + true + enable + + + diff --git a/COP/WinForms/Form1.Designer.cs b/COP/WinForms/Form1.Designer.cs new file mode 100644 index 0000000..9c55f6b --- /dev/null +++ b/COP/WinForms/Form1.Designer.cs @@ -0,0 +1,39 @@ +namespace WinForms +{ + 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/COP/WinForms/Form1.cs b/COP/WinForms/Form1.cs new file mode 100644 index 0000000..f15d6ef --- /dev/null +++ b/COP/WinForms/Form1.cs @@ -0,0 +1,10 @@ +namespace WinForms +{ + public partial class Form1 : Form + { + public Form1() + { + InitializeComponent(); + } + } +} diff --git a/COP/WinForms/Form1.resx b/COP/WinForms/Form1.resx new file mode 100644 index 0000000..1af7de1 --- /dev/null +++ b/COP/WinForms/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/COP/WinForms/Program.cs b/COP/WinForms/Program.cs new file mode 100644 index 0000000..59ed7ae --- /dev/null +++ b/COP/WinForms/Program.cs @@ -0,0 +1,17 @@ +namespace WinForms +{ + 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/COP/WinForms/WinForms.csproj b/COP/WinForms/WinForms.csproj new file mode 100644 index 0000000..b57c89e --- /dev/null +++ b/COP/WinForms/WinForms.csproj @@ -0,0 +1,11 @@ + + + + WinExe + net6.0-windows + enable + true + enable + + + \ No newline at end of file