diff --git a/OWTrack/Form1.Designer.cs b/OWTrack/MainForm.Designer.cs similarity index 99% rename from OWTrack/Form1.Designer.cs rename to OWTrack/MainForm.Designer.cs index f37c593..ee3c09e 100644 --- a/OWTrack/Form1.Designer.cs +++ b/OWTrack/MainForm.Designer.cs @@ -1,6 +1,6 @@ namespace OWTrack { - partial class Form1 + partial class MainForm { /// /// Required designer variable. @@ -29,7 +29,7 @@ private void InitializeComponent() { this.components = new System.ComponentModel.Container(); - System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1)); + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm)); this.label1 = new System.Windows.Forms.Label(); this.status = new System.Windows.Forms.Label(); this.timer1 = new System.Windows.Forms.Timer(this.components); diff --git a/OWTrack/Form1.cs b/OWTrack/MainForm.cs similarity index 98% rename from OWTrack/Form1.cs rename to OWTrack/MainForm.cs index ccf8ea5..69e8101 100644 --- a/OWTrack/Form1.cs +++ b/OWTrack/MainForm.cs @@ -7,14 +7,14 @@ using System.IO; namespace OWTrack { - public partial class Form1 : Form + public partial class MainForm : Form { Tracker tr = new Tracker(); private const string IS_RUNNING = "Running"; private const string NOT_RUNNING = " Not running"; private bool SRonce = false; - public Form1() + public MainForm() { InitializeComponent(); loadSave(); diff --git a/OWTrack/Form1.resx b/OWTrack/MainForm.resx similarity index 100% rename from OWTrack/Form1.resx rename to OWTrack/MainForm.resx