Close
This commit is contained in:
Kurt
2015-11-13 19:04:42 -08:00
parent 75be21bac2
commit f867697caa
2 changed files with 7 additions and 1 deletions

View File

@@ -912,8 +912,9 @@ private void InitializeComponent()
this.Menu_Exit.Name = "Menu_Exit";
this.Menu_Exit.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.E)));
this.Menu_Exit.ShowShortcutKeys = false;
this.Menu_Exit.Size = new System.Drawing.Size(96, 22);
this.Menu_Exit.Size = new System.Drawing.Size(152, 22);
this.Menu_Exit.Text = "&Close";
this.Menu_Exit.Click += new System.EventHandler(this.Menu_Exit_Click);
//
// Menu_Tools
//

View File

@@ -527,5 +527,10 @@ private void testUnique()
var any = result[0][0].Data;
m_parent.populateFields(any);
}
private void Menu_Exit_Click(object sender, EventArgs e)
{
Close();
}
}
}