From e2c23ff9346a920f140f048e5082be0d64725a00 Mon Sep 17 00:00:00 2001 From: "Samuele E. Locatelli" Date: Tue, 28 Nov 2017 17:33:59 +0100 Subject: [PATCH] Update nome form --- Test-S7/Program.cs | 2 +- Test-S7/Test-S7.csproj | 10 +++++----- .../{mAINfORM.Designer.cs => TestMainForm.Designer.cs} | 2 +- Test-S7/{mAINfORM.cs => TestMainForm.cs} | 4 ++-- Test-S7/{mAINfORM.resx => TestMainForm.resx} | 0 5 files changed, 9 insertions(+), 9 deletions(-) rename Test-S7/{mAINfORM.Designer.cs => TestMainForm.Designer.cs} (99%) rename Test-S7/{mAINfORM.cs => TestMainForm.cs} (92%) rename Test-S7/{mAINfORM.resx => TestMainForm.resx} (100%) diff --git a/Test-S7/Program.cs b/Test-S7/Program.cs index beb9b8ae..c46deed1 100644 --- a/Test-S7/Program.cs +++ b/Test-S7/Program.cs @@ -16,7 +16,7 @@ namespace Test_S7 { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); - Application.Run(new MainForm()); + Application.Run(new TestMainForm()); } } } diff --git a/Test-S7/Test-S7.csproj b/Test-S7/Test-S7.csproj index cb8c21d3..c0614a84 100644 --- a/Test-S7/Test-S7.csproj +++ b/Test-S7/Test-S7.csproj @@ -48,16 +48,16 @@ - + Form - - MainForm.cs + + TestMainForm.cs - - MainForm.cs + + TestMainForm.cs ResXFileCodeGenerator diff --git a/Test-S7/mAINfORM.Designer.cs b/Test-S7/TestMainForm.Designer.cs similarity index 99% rename from Test-S7/mAINfORM.Designer.cs rename to Test-S7/TestMainForm.Designer.cs index 89725c26..bc3a5140 100644 --- a/Test-S7/mAINfORM.Designer.cs +++ b/Test-S7/TestMainForm.Designer.cs @@ -1,6 +1,6 @@ namespace Test_S7 { - partial class MainForm + partial class TestMainForm { /// /// Variabile di progettazione necessaria. diff --git a/Test-S7/mAINfORM.cs b/Test-S7/TestMainForm.cs similarity index 92% rename from Test-S7/mAINfORM.cs rename to Test-S7/TestMainForm.cs index 3e81c4b5..f314f766 100644 --- a/Test-S7/mAINfORM.cs +++ b/Test-S7/TestMainForm.cs @@ -11,9 +11,9 @@ using S7.Net; namespace Test_S7 { - public partial class MainForm : Form + public partial class TestMainForm : Form { - public MainForm() + public TestMainForm() { InitializeComponent(); diff --git a/Test-S7/mAINfORM.resx b/Test-S7/TestMainForm.resx similarity index 100% rename from Test-S7/mAINfORM.resx rename to Test-S7/TestMainForm.resx