public AttributeConstructorViewModel(AttributeConstructor model)
     : base(model)
 {
     this.Commands.AddItem("DeleteConstructor", t => this.DeleteConstructor());
     this.IgnorePropertyHasChanged.Add("DisplayName");
     this.typedModel = model;
 }
Exemple #2
0
 private void AttributeConstructor_AttributeConstructorCompletedEvent(AttributeConstructor sender)
 {
     this.ExecutedConstructors.Add(sender.ID);
 }