Inheritance: System.Windows.Forms.Form
 // <summary>
 //Calls the AboutBox Form and disables the AddCinderella_Form
 // </summary>
 // <param name="sender"></param>
 // <param name="e"></param>
 private void aboutToolStripMenuItem_Click(object sender, EventArgs e)
 {
     this.Enabled = false;
     AboutBox aboutBoxForm = new AboutBox();
     aboutBoxForm.ShowDialog();
     this.Enabled = true;
 }
 /// <summary>
 /// Opens and enables the About Form of The Cinderella's Closet Project
 /// </summary>
 /// <param name="sender"></param>
 /// <param name="e"></param>
 private void aboutToolStripMenuItem1_Click(object sender, EventArgs e)
 {
     //disables the CinderellaCheckIn_Form
     this.Enabled = false;
     //Calls the About Form
     AboutBox aboutBoxForm = new AboutBox();
     //Shows the About Form
     aboutBoxForm.ShowDialog();
     this.Enabled = true;
 }