Example #1
0
 private void exportInstrumentToolStripMenuItem_Click(object sender, EventArgs e)
 {
     if (currentInstrument != null && currentInstrument.ID != "R")
     {
         InstrumentsManager.Export(currentInstrument);
     }
 }
Example #2
0
 private void exportInstruments_Click(object sender, EventArgs e)
 {
     InstrumentsManager.Export(currentSong);
 }
Example #3
0
 private void deleteInstrument_Click(object sender, EventArgs e)
 {
     InstrumentsManager.Remove(currentSong, (Instrument)lstInstruments.SelectedItem);
 }
Example #4
0
 private void newInstrument_Click(object sender, EventArgs e)
 {
     InstrumentsManager.AddNew(currentSong);
 }
Example #5
0
 private void importarToolStripMenuItem_Click(object sender, EventArgs e)
 {
     InstrumentsManager.Import(currentSong);
 }