Esempio n. 1
0
 public ShowInstrumentEditorMessage(string name, int numStrings, bool readOnly, Action <string, int> callback) : base()
 {
     InstrumentEditorVM = new InstrumentEditorViewModel(name, numStrings, readOnly, callback);
 }
Esempio n. 2
0
 public ShowInstrumentEditorMessage(Action <string, int> callback) : base()
 {
     InstrumentEditorVM = new InstrumentEditorViewModel(callback);
 }