From 8149c4659ac9a5ccecbb373d26026d96ff627dcf Mon Sep 17 00:00:00 2001 From: Shreyas Zare Date: Sat, 16 Feb 2019 18:27:56 +0530 Subject: [PATCH] refactoring done --- .../{AboutForm.Designer.cs => frmAbout.Designer.cs} | 4 ++-- DnsServerSystemTrayApp/{AboutForm.cs => frmAbout.cs} | 4 ++-- DnsServerSystemTrayApp/{AboutForm.resx => frmAbout.resx} | 0 3 files changed, 4 insertions(+), 4 deletions(-) rename DnsServerSystemTrayApp/{AboutForm.Designer.cs => frmAbout.Designer.cs} (99%) rename DnsServerSystemTrayApp/{AboutForm.cs => frmAbout.cs} (95%) rename DnsServerSystemTrayApp/{AboutForm.resx => frmAbout.resx} (100%) diff --git a/DnsServerSystemTrayApp/AboutForm.Designer.cs b/DnsServerSystemTrayApp/frmAbout.Designer.cs similarity index 99% rename from DnsServerSystemTrayApp/AboutForm.Designer.cs rename to DnsServerSystemTrayApp/frmAbout.Designer.cs index e398607e..2b8914b3 100644 --- a/DnsServerSystemTrayApp/AboutForm.Designer.cs +++ b/DnsServerSystemTrayApp/frmAbout.Designer.cs @@ -1,6 +1,6 @@ namespace DnsServerSystemTrayApp { - partial class AboutForm + partial class frmAbout { /// /// Required designer variable. @@ -28,7 +28,7 @@ /// private void InitializeComponent() { - System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(AboutForm)); + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmAbout)); this.panel1 = new System.Windows.Forms.Panel(); this.pictureBox1 = new System.Windows.Forms.PictureBox(); this.label2 = new System.Windows.Forms.Label(); diff --git a/DnsServerSystemTrayApp/AboutForm.cs b/DnsServerSystemTrayApp/frmAbout.cs similarity index 95% rename from DnsServerSystemTrayApp/AboutForm.cs rename to DnsServerSystemTrayApp/frmAbout.cs index c8553e6a..a04ef866 100644 --- a/DnsServerSystemTrayApp/AboutForm.cs +++ b/DnsServerSystemTrayApp/frmAbout.cs @@ -21,9 +21,9 @@ using System.Windows.Forms; namespace DnsServerSystemTrayApp { - public partial class AboutForm : Form + public partial class frmAbout : Form { - public AboutForm() + public frmAbout() { InitializeComponent(); diff --git a/DnsServerSystemTrayApp/AboutForm.resx b/DnsServerSystemTrayApp/frmAbout.resx similarity index 100% rename from DnsServerSystemTrayApp/AboutForm.resx rename to DnsServerSystemTrayApp/frmAbout.resx