--- trunk/RomCheater/Form1.cs 2012/05/09 06:06:22 5 +++ trunk/RomCheater/Main.cs 2012/05/09 06:28:44 16 @@ -9,11 +9,21 @@ using System.Windows.Forms; namespace RomCheater { - public partial class Form1 : Form + public partial class Main : Form { - public Form1() + public Main() { InitializeComponent(); } + + private void mnuItemExit_Click(object sender, EventArgs e) + { + this.Close(); + } + + private void btnCopyLogToClipboard_Click(object sender, EventArgs e) + { + + } } }