Exemplo n.º 1
0
        private void optionsToolStripMenuItem_Click(object sender, EventArgs e)
        {
            OptionsForm f = FormFactory.CreateOrActivateFormOfType <OptionsForm>();

            f.FormClosed += new FormClosedEventHandler(optionsFormClosed);
        }
Exemplo n.º 2
0
 private void exportarAWAVToolStripMenuItem_Click(object sender, EventArgs e)
 {
     FormFactory.CreateOrActivateFormOfType <ExportForm>();
 }
Exemplo n.º 3
0
        private void editorDeFrecuenciasToolStripMenuItem_Click(object sender, EventArgs e)
        {
            FrequenciesTableEditor editor = FormFactory.CreateOrActivateFormOfType <FrequenciesTableEditor>();

            editor.CurrentSong = this.currentSong;
        }