diff --git a/laba 0/laba 0.sln b/laba 0/laba 0.sln new file mode 100644 index 0000000..ce7cdea --- /dev/null +++ b/laba 0/laba 0.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.7.34031.279 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "laba 0", "laba 0\laba 0.csproj", "{20221664-1E5B-4E5F-BBF7-F0E378CB7A24}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {20221664-1E5B-4E5F-BBF7-F0E378CB7A24}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {20221664-1E5B-4E5F-BBF7-F0E378CB7A24}.Debug|Any CPU.Build.0 = Debug|Any CPU + {20221664-1E5B-4E5F-BBF7-F0E378CB7A24}.Release|Any CPU.ActiveCfg = Release|Any CPU + {20221664-1E5B-4E5F-BBF7-F0E378CB7A24}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {55E4A8B2-9A4C-4425-BE86-BB505044E37E} + EndGlobalSection +EndGlobal diff --git a/laba 0/laba 0/Form1.Designer.cs b/laba 0/laba 0/Form1.Designer.cs new file mode 100644 index 0000000..611dabd --- /dev/null +++ b/laba 0/laba 0/Form1.Designer.cs @@ -0,0 +1,39 @@ +namespace laba_0 +{ + 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 + } +} \ No newline at end of file diff --git a/laba 0/laba 0/Form1.cs b/laba 0/laba 0/Form1.cs new file mode 100644 index 0000000..524c33f --- /dev/null +++ b/laba 0/laba 0/Form1.cs @@ -0,0 +1,10 @@ +namespace laba_0 +{ + public partial class Form1 : Form + { + public Form1() + { + InitializeComponent(); + } + } +} \ No newline at end of file diff --git a/laba 0/laba 0/Program.cs b/laba 0/laba 0/Program.cs new file mode 100644 index 0000000..794f80e --- /dev/null +++ b/laba 0/laba 0/Program.cs @@ -0,0 +1,17 @@ +namespace laba_0 +{ + 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/laba 0/laba 0/laba 0.csproj b/laba 0/laba 0/laba 0.csproj new file mode 100644 index 0000000..9d5b509 --- /dev/null +++ b/laba 0/laba 0/laba 0.csproj @@ -0,0 +1,12 @@ + + + + WinExe + net7.0-windows + laba_0 + enable + true + enable + + + \ No newline at end of file