Ejemplo n.º 1
0
 private void saveButton_Click(object sender, EventArgs e)
 {
     if (textBoxTitle.Text != "" && songBody.Text != "")
     {
         if (isNewSong) // If a new song is being added
         {
             int num = songBook.songCount;
             songBook.AddSong(num - 1, num - 1, 0, num, textBoxTitle.Text, "", songBody.Text);
             fileFunctions.ToXML();
             Close();
         }
         else // IF a song is being edited
         {
             songBeingEdited.body  = songBody.Text;
             songBeingEdited.title = textBoxTitle.Text;
             fileFunctions.ToXML();
             Close();
         }
     }
     else
     {
         MessageBox.Show("Please enter a title and song body", "Incorrect input", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
     }
 }
Ejemplo n.º 2
0
 private void quitToolStripMenuItem_Click(object sender, EventArgs e)
 {
     fileFunctions.ToXML();
     Application.Exit();
 }