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

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
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

View File

@ -1,6 +1,6 @@
namespace InternetShopForms
{
partial class Form1
partial class FormOrdersList
{
/// <summary>
/// Required designer variable.
@ -28,10 +28,16 @@
/// </summary>
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

View File

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

View File

@ -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());
}
}
}