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