Exemplo n.º 1
0
 public SoundChunkController(NSFController nsfcontroller,SoundChunk soundchunk)
     : base(nsfcontroller,soundchunk)
 {
     this.soundchunk = soundchunk;
     Node.Text = "Sound Chunk";
     Node.ImageKey = "soundchunk";
     Node.SelectedImageKey = "soundchunk";
 }
Exemplo n.º 2
0
 private void Menu_Add_SoundChunk()
 {
     SoundChunk chunk = new SoundChunk();
     nsf.Chunks.Add(chunk);
     SoundChunkController controller = new SoundChunkController(this,chunk);
     AddNode(controller);
 }