1 write to PromotedProperty
System.Activities.Presentation (1)
System.Activities.Presentation\System\Activities\Presentation\DesignerMetadata.cs (1)
89builder.AddCustomAttributes(type, new ShowInOutlineViewAttribute() { PromotedProperty = "Handler" });
10 references to PromotedProperty
System.Activities.Presentation (10)
System.Activities.Presentation\System\Activities\Presentation\View\TreeView\TreeViewItemModelItemViewModel.cs (3)
32if (attr != null && !string.IsNullOrEmpty(attr.PromotedProperty)) 35this.promotedProperty = modelItem.Properties[attr.PromotedProperty]; 43Fx.Assert(attr.PromotedProperty + " not found on " + modelItem.Name);
System.Activities.Presentation\System\Activities\Presentation\View\TreeView\TreeViewItemModelPropertyViewModel.cs (2)
43if (viewVisible != null && !string.IsNullOrWhiteSpace(viewVisible.PromotedProperty)) 45ModelProperty promotedProperty = modelProperty.Value.Properties.Find(viewVisible.PromotedProperty);
System.Activities.Presentation\System\Activities\Presentation\View\TreeView\TreeViewItemViewModel.cs (5)
407if (string.IsNullOrWhiteSpace(outlineView.PromotedProperty)) 413ModelProperty promotedProperty = property.Value.Properties.Find(outlineView.PromotedProperty); 416throw FxTrace.Exception.AsError(new InvalidOperationException(string.Format(CultureInfo.CurrentCulture, SR.PromotedPropertyNotFound, outlineView.PromotedProperty, property.Value.Name))); 466if (attr != null && !string.IsNullOrEmpty(attr.PromotedProperty)) 468return string.Equals(propertyName, attr.PromotedProperty, StringComparison.Ordinal);