Создал проект с формами

This commit is contained in:
Никита Потапов 2024-11-19 20:39:03 +04:00
parent 8d86e2b539
commit e7a62a55df
5 changed files with 46 additions and 40 deletions

View File

@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17 # Visual Studio Version 17
VisualStudioVersion = 17.11.35312.102 VisualStudioVersion = 17.11.35312.102
MinimumVisualStudioVersion = 10.0.40219.1 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 EndProject
Global Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution GlobalSection(SolutionConfigurationPlatforms) = preSolution
@ -11,10 +11,10 @@ Global
Release|Any CPU = Release|Any CPU Release|Any CPU = Release|Any CPU
EndGlobalSection EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution GlobalSection(ProjectConfigurationPlatforms) = postSolution
{0E8AB1C8-F5FF-4331-A0A9-2A23C51E28D0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {45D39595-B9F2-4F61-ADA5-ED4611FA5D0E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{0E8AB1C8-F5FF-4331-A0A9-2A23C51E28D0}.Debug|Any CPU.Build.0 = Debug|Any CPU {45D39595-B9F2-4F61-ADA5-ED4611FA5D0E}.Debug|Any CPU.Build.0 = Debug|Any CPU
{0E8AB1C8-F5FF-4331-A0A9-2A23C51E28D0}.Release|Any CPU.ActiveCfg = Release|Any CPU {45D39595-B9F2-4F61-ADA5-ED4611FA5D0E}.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}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection EndGlobalSection
GlobalSection(SolutionProperties) = preSolution GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE HideSolutionNode = FALSE

View File

@ -1,6 +1,6 @@
namespace InternetShopForms namespace InternetShopForms
{ {
partial class Form1 partial class FormOrdersList
{ {
/// <summary> /// <summary>
/// Required designer variable. /// Required designer variable.
@ -28,10 +28,16 @@
/// </summary> /// </summary>
private void InitializeComponent() private void InitializeComponent()
{ {
this.components = new System.ComponentModel.Container(); SuspendLayout();
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; //
this.ClientSize = new System.Drawing.Size(800, 450); // FormOrdersList
this.Text = "Form1"; //
AutoScaleDimensions = new SizeF(8F, 20F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(800, 450);
Name = "FormOrdersList";
Text = "Заказы";
ResumeLayout(false);
} }
#endregion #endregion

View File

@ -1,8 +1,8 @@
namespace InternetShopForms namespace InternetShopForms
{ {
public partial class Form1 : Form public partial class FormOrdersList : Form
{ {
public Form1() public FormOrdersList()
{ {
InitializeComponent(); InitializeComponent();
} }

View File

@ -11,7 +11,7 @@ namespace InternetShopForms
// To customize application configuration such as set high DPI settings or default font, // To customize application configuration such as set high DPI settings or default font,
// see https://aka.ms/applicationconfiguration. // see https://aka.ms/applicationconfiguration.
ApplicationConfiguration.Initialize(); ApplicationConfiguration.Initialize();
Application.Run(new Form1()); Application.Run(new FormOrdersList());
} }
} }
} }