Esempio n. 1
0
 public VHController(MusicEntryController musicentrycontroller, VH vh)
 {
     this.musicentrycontroller = musicentrycontroller;
     this.vh               = vh;
     Node.Text             = "VH";
     Node.ImageKey         = "vh";
     Node.SelectedImageKey = "vh";
     AddMenu("Replace VH", Menu_Replace_VH);
     AddMenu("Delete VH", Menu_Delete_VH);
     AddMenuSeparator();
     AddMenu("Export VH", Menu_Export_VH);
 }
Esempio n. 2
0
 public SEQController(MusicEntryController musicentrycontroller,SEQ seq)
 {
     this.musicentrycontroller = musicentrycontroller;
     this.seq = seq;
     Node.Text = "SEQ";
     Node.ImageKey = "seq";
     Node.SelectedImageKey = "seq";
     AddMenu("Replace SEQ",Menu_Replace_SEQ);
     AddMenu("Delete SEQ",Menu_Delete_SEQ);
     AddMenuSeparator();
     AddMenu("Export SEQ",Menu_Export_SEQ);
     AddMenu("Export SEQ as MIDI",Menu_Export_SEQ_MIDI);
 }
Esempio n. 3
0
 public SEQController(MusicEntryController musicentrycontroller, SEQ seq)
 {
     this.musicentrycontroller = musicentrycontroller;
     this.seq              = seq;
     Node.Text             = "SEQ";
     Node.ImageKey         = "seq";
     Node.SelectedImageKey = "seq";
     AddMenu("Replace SEQ", Menu_Replace_SEQ);
     AddMenu("Delete SEQ", Menu_Delete_SEQ);
     AddMenuSeparator();
     AddMenu("Export SEQ", Menu_Export_SEQ);
     AddMenu("Export SEQ as MIDI", Menu_Export_SEQ_MIDI);
 }