diff --git a/InternetShop/InternetShop.sln b/InternetShop/InternetShop.sln index 0bb5b33..d1d41a5 100644 --- a/InternetShop/InternetShop.sln +++ b/InternetShop/InternetShop.sln @@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 17 VisualStudioVersion = 17.11.35312.102 MinimumVisualStudioVersion = 10.0.40219.1 -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "InternetShopForms", "InternetShopForms\InternetShopForms.csproj", "{0E8AB1C8-F5FF-4331-A0A9-2A23C51E28D0}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "InternetShopForms", "InternetShopForms\InternetShopForms.csproj", "{45D39595-B9F2-4F61-ADA5-ED4611FA5D0E}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution @@ -11,10 +11,10 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {0E8AB1C8-F5FF-4331-A0A9-2A23C51E28D0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {0E8AB1C8-F5FF-4331-A0A9-2A23C51E28D0}.Debug|Any CPU.Build.0 = Debug|Any CPU - {0E8AB1C8-F5FF-4331-A0A9-2A23C51E28D0}.Release|Any CPU.ActiveCfg = Release|Any CPU - {0E8AB1C8-F5FF-4331-A0A9-2A23C51E28D0}.Release|Any CPU.Build.0 = Release|Any CPU + {45D39595-B9F2-4F61-ADA5-ED4611FA5D0E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {45D39595-B9F2-4F61-ADA5-ED4611FA5D0E}.Debug|Any CPU.Build.0 = Debug|Any CPU + {45D39595-B9F2-4F61-ADA5-ED4611FA5D0E}.Release|Any CPU.ActiveCfg = Release|Any CPU + {45D39595-B9F2-4F61-ADA5-ED4611FA5D0E}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/InternetShop/InternetShopForms/Form1.Designer.cs b/InternetShop/InternetShopForms/FormOrdersList.Designer.cs similarity index 71% rename from InternetShop/InternetShopForms/Form1.Designer.cs rename to InternetShop/InternetShopForms/FormOrdersList.Designer.cs index 23df59d..a9e8234 100644 --- a/InternetShop/InternetShopForms/Form1.Designer.cs +++ b/InternetShop/InternetShopForms/FormOrdersList.Designer.cs @@ -1,6 +1,6 @@ namespace InternetShopForms { - partial class Form1 + partial class FormOrdersList { /// /// Required designer variable. @@ -28,10 +28,16 @@ /// 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"; + SuspendLayout(); + // + // FormOrdersList + // + AutoScaleDimensions = new SizeF(8F, 20F); + AutoScaleMode = AutoScaleMode.Font; + ClientSize = new Size(800, 450); + Name = "FormOrdersList"; + Text = "Заказы"; + ResumeLayout(false); } #endregion diff --git a/InternetShop/InternetShopForms/Form1.cs b/InternetShop/InternetShopForms/FormOrdersList.cs similarity index 55% rename from InternetShop/InternetShopForms/Form1.cs rename to InternetShop/InternetShopForms/FormOrdersList.cs index 02014c2..a931355 100644 --- a/InternetShop/InternetShopForms/Form1.cs +++ b/InternetShop/InternetShopForms/FormOrdersList.cs @@ -1,8 +1,8 @@ namespace InternetShopForms { - public partial class Form1 : Form + public partial class FormOrdersList : Form { - public Form1() + public FormOrdersList() { InitializeComponent(); } diff --git a/InternetShop/InternetShopForms/Form1.resx b/InternetShop/InternetShopForms/FormOrdersList.resx similarity index 92% rename from InternetShop/InternetShopForms/Form1.resx rename to InternetShop/InternetShopForms/FormOrdersList.resx index 1af7de1..8b2ff64 100644 --- a/InternetShop/InternetShopForms/Form1.resx +++ b/InternetShop/InternetShopForms/FormOrdersList.resx @@ -1,17 +1,17 @@  - diff --git a/InternetShop/InternetShopForms/Program.cs b/InternetShop/InternetShopForms/Program.cs index 708c409..6ac242b 100644 --- a/InternetShop/InternetShopForms/Program.cs +++ b/InternetShop/InternetShopForms/Program.cs @@ -11,7 +11,7 @@ namespace InternetShopForms // To customize application configuration such as set high DPI settings or default font, // see https://aka.ms/applicationconfiguration. ApplicationConfiguration.Initialize(); - Application.Run(new Form1()); + Application.Run(new FormOrdersList()); } } } \ No newline at end of file