From 20f3bef3655aedb7d8b713e27b6a0a1b5080d6be Mon Sep 17 00:00:00 2001 From: AndreStork Date: Thu, 22 Jan 2026 08:36:52 +0100 Subject: [PATCH] Aggiungere i file di progetto. --- GestionePizzeForm.Designer.cs | 45 +++++++++++++ GestionePizzeForm.cs | 10 +++ GestionePizzeForm.resx | 120 ++++++++++++++++++++++++++++++++++ PizzaExpress-Client.csproj | 12 ++++ PizzaExpress-Client.sln | 25 +++++++ Program.cs | 17 +++++ 6 files changed, 229 insertions(+) create mode 100644 GestionePizzeForm.Designer.cs create mode 100644 GestionePizzeForm.cs create mode 100644 GestionePizzeForm.resx create mode 100644 PizzaExpress-Client.csproj create mode 100644 PizzaExpress-Client.sln create mode 100644 Program.cs diff --git a/GestionePizzeForm.Designer.cs b/GestionePizzeForm.Designer.cs new file mode 100644 index 0000000..99a8dfc --- /dev/null +++ b/GestionePizzeForm.Designer.cs @@ -0,0 +1,45 @@ +namespace PizzaExpress_Client +{ + partial class GestionePizzeForm + { + /// + /// 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() + { + SuspendLayout(); + // + // GestionePizzeForm + // + AutoScaleDimensions = new SizeF(7F, 15F); + AutoScaleMode = AutoScaleMode.Font; + ClientSize = new Size(800, 450); + Name = "GestionePizzeForm"; + Text = "Form1"; + ResumeLayout(false); + } + + #endregion + } +} diff --git a/GestionePizzeForm.cs b/GestionePizzeForm.cs new file mode 100644 index 0000000..ed86154 --- /dev/null +++ b/GestionePizzeForm.cs @@ -0,0 +1,10 @@ +namespace PizzaExpress_Client +{ + public partial class GestionePizzeForm : Form + { + public GestionePizzeForm() + { + InitializeComponent(); + } + } +} diff --git a/GestionePizzeForm.resx b/GestionePizzeForm.resx new file mode 100644 index 0000000..8b2ff64 --- /dev/null +++ b/GestionePizzeForm.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/PizzaExpress-Client.csproj b/PizzaExpress-Client.csproj new file mode 100644 index 0000000..16d15f3 --- /dev/null +++ b/PizzaExpress-Client.csproj @@ -0,0 +1,12 @@ + + + + WinExe + net8.0-windows + PizzaExpress_Client + enable + true + enable + + + \ No newline at end of file diff --git a/PizzaExpress-Client.sln b/PizzaExpress-Client.sln new file mode 100644 index 0000000..a446070 --- /dev/null +++ b/PizzaExpress-Client.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}") = "PizzaExpress-Client", "PizzaExpress-Client.csproj", "{51B321D2-F9F1-406B-8A77-8A02D8460228}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {51B321D2-F9F1-406B-8A77-8A02D8460228}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {51B321D2-F9F1-406B-8A77-8A02D8460228}.Debug|Any CPU.Build.0 = Debug|Any CPU + {51B321D2-F9F1-406B-8A77-8A02D8460228}.Release|Any CPU.ActiveCfg = Release|Any CPU + {51B321D2-F9F1-406B-8A77-8A02D8460228}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {146850E9-AF8C-4E68-8545-948CED0D65A6} + EndGlobalSection +EndGlobal diff --git a/Program.cs b/Program.cs new file mode 100644 index 0000000..1c3dbd8 --- /dev/null +++ b/Program.cs @@ -0,0 +1,17 @@ +namespace PizzaExpress_Client +{ + 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 GestionePizzeForm()); + } + } +} \ No newline at end of file