Deleted unused code

This commit is contained in:
Sigmanor 2016-01-10 14:29:19 +02:00
parent d8e36a3ca2
commit a3a88a6b5e
2 changed files with 6 additions and 7 deletions

View file

@ -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);

View file

@ -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)
{
}
}
}