Ejemplo n.º 1
0
 public ConstructorViewModel(Constructor constructor)
 {
   this.constructor = constructor;
   Elements = new ObservableCollection<ElementViewModel>();
   Connections = new ObservableCollection<ConnectionViewModel>();
 }
Ejemplo n.º 2
0
 public EditorWindow(Constructor currentConstructor, string name)
 {
   CurrentConstructor = currentConstructor;
   Name = name;
 }