From a3a88a6b5e508e1366e48eb755e64557d61caf55 Mon Sep 17 00:00:00 2001 From: Sigmanor Date: Sun, 10 Jan 2016 14:29:19 +0200 Subject: [PATCH] Deleted unused code --- Crypto Notepad/ChangeKeyForm.Designer.cs | 1 + Crypto Notepad/ChangeKeyForm.cs | 12 +++++------- 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/Crypto Notepad/ChangeKeyForm.Designer.cs b/Crypto Notepad/ChangeKeyForm.Designer.cs index fee88e8..7696da4 100644 --- a/Crypto Notepad/ChangeKeyForm.Designer.cs +++ b/Crypto Notepad/ChangeKeyForm.Designer.cs @@ -127,6 +127,7 @@ private void InitializeComponent() this.Name = "ChangeKeyForm"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; this.Text = "Change Key"; + this.Load += new System.EventHandler(this.ChangeKeyForm_Load); ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit(); this.ResumeLayout(false); diff --git a/Crypto Notepad/ChangeKeyForm.cs b/Crypto Notepad/ChangeKeyForm.cs index 13d639c..77e66e0 100644 --- a/Crypto Notepad/ChangeKeyForm.cs +++ b/Crypto Notepad/ChangeKeyForm.cs @@ -1,11 +1,4 @@ using System; -using System.Collections.Generic; -using System.ComponentModel; -using System.Data; -using System.Drawing; -using System.Linq; -using System.Text; -using System.Threading.Tasks; using System.Windows.Forms; namespace Crypto_Notepad @@ -64,5 +57,10 @@ private void pictureBox2_Click(object sender, EventArgs e) return; } } + + private void ChangeKeyForm_Load(object sender, EventArgs e) + { + + } } }