From f26865787343e95e8efda028583da5c6ad837500 Mon Sep 17 00:00:00 2001 From: Anastasia Yazykova Date: Tue, 5 Nov 2024 23:38:50 +0400 Subject: [PATCH] =?UTF-8?q?=D0=9B=D0=B0=D0=B1=D0=B0=200?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Academic_Performance/Academic_Performance.sln | 25 ++++ .../Academic_Performance.csproj | 11 ++ .../Academic_Performance/Form1.Designer.cs | 39 ++++++ .../Academic_Performance/Form1.cs | 10 ++ .../Academic_Performance/Form1.resx | 120 ++++++++++++++++++ .../Academic_Performance/Program.cs | 17 +++ 6 files changed, 222 insertions(+) create mode 100644 Academic_Performance/Academic_Performance.sln create mode 100644 Academic_Performance/Academic_Performance/Academic_Performance.csproj create mode 100644 Academic_Performance/Academic_Performance/Form1.Designer.cs create mode 100644 Academic_Performance/Academic_Performance/Form1.cs create mode 100644 Academic_Performance/Academic_Performance/Form1.resx create mode 100644 Academic_Performance/Academic_Performance/Program.cs diff --git a/Academic_Performance/Academic_Performance.sln b/Academic_Performance/Academic_Performance.sln new file mode 100644 index 0000000..6fffd7f --- /dev/null +++ b/Academic_Performance/Academic_Performance.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.11.35327.3 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Academic_Performance", "Academic_Performance\Academic_Performance.csproj", "{213E51C4-73E0-4A63-BB76-053AC53F4DB2}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {213E51C4-73E0-4A63-BB76-053AC53F4DB2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {213E51C4-73E0-4A63-BB76-053AC53F4DB2}.Debug|Any CPU.Build.0 = Debug|Any CPU + {213E51C4-73E0-4A63-BB76-053AC53F4DB2}.Release|Any CPU.ActiveCfg = Release|Any CPU + {213E51C4-73E0-4A63-BB76-053AC53F4DB2}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {BA9C3C41-7272-4897-814E-781262041BAA} + EndGlobalSection +EndGlobal diff --git a/Academic_Performance/Academic_Performance/Academic_Performance.csproj b/Academic_Performance/Academic_Performance/Academic_Performance.csproj new file mode 100644 index 0000000..663fdb8 --- /dev/null +++ b/Academic_Performance/Academic_Performance/Academic_Performance.csproj @@ -0,0 +1,11 @@ + + + + WinExe + net8.0-windows + enable + true + enable + + + \ No newline at end of file diff --git a/Academic_Performance/Academic_Performance/Form1.Designer.cs b/Academic_Performance/Academic_Performance/Form1.Designer.cs new file mode 100644 index 0000000..429521b --- /dev/null +++ b/Academic_Performance/Academic_Performance/Form1.Designer.cs @@ -0,0 +1,39 @@ +namespace Academic_Performance +{ + 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/Academic_Performance/Academic_Performance/Form1.cs b/Academic_Performance/Academic_Performance/Form1.cs new file mode 100644 index 0000000..08292b9 --- /dev/null +++ b/Academic_Performance/Academic_Performance/Form1.cs @@ -0,0 +1,10 @@ +namespace Academic_Performance +{ + public partial class Form1 : Form + { + public Form1() + { + InitializeComponent(); + } + } +} diff --git a/Academic_Performance/Academic_Performance/Form1.resx b/Academic_Performance/Academic_Performance/Form1.resx new file mode 100644 index 0000000..1af7de1 --- /dev/null +++ b/Academic_Performance/Academic_Performance/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/Academic_Performance/Academic_Performance/Program.cs b/Academic_Performance/Academic_Performance/Program.cs new file mode 100644 index 0000000..1d46e8b --- /dev/null +++ b/Academic_Performance/Academic_Performance/Program.cs @@ -0,0 +1,17 @@ +namespace Academic_Performance +{ + 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