1 write to PropertyName
System.Activities.Presentation (1)
System.Activities.Presentation\System\Activities\Presentation\Model\LinkBase.cs (1)
30this.PropertyName = propertyName;
9 references to PropertyName
System.Activities.Presentation (9)
System.Activities.Presentation\System\Activities\Presentation\Model\ModelTreeItemHelper.cs (1)
33BackPointer backPointer = this.extraPropertyBackPointers.FirstOrDefault<BackPointer>((bp) => bp.DestinationVertex == parent && propertyName == bp.PropertyName);
System.Activities.Presentation\System\Activities\Presentation\Model\ModelTreeManager.cs (8)
1079ModelProperty modelProperty = edge.SourceVertex.Properties[edge.PropertyName]; 1088((IModelTreeItem)edge.DestinationVertex).RemoveSource(edge.SourceVertex, edge.PropertyName); 1102ModelProperty modelProperty = edge.SourceVertex.Properties[edge.PropertyName]; 1109((IModelTreeItem)edge.DestinationVertex).ExtraPropertyBackPointers.Add(new BackPointer(edge.PropertyName, edge.DestinationVertex, edge.SourceVertex)); 1127if (p.Parent == from && p.Name == edge.PropertyName) 1135if (bp.DestinationVertex == from && bp.PropertyName == edge.PropertyName) 1154return ((IModelTreeItem)backPointer.DestinationVertex).ModelPropertyStore[backPointer.PropertyName] == backPointer.SourceVertex;