8 references to WidthPropertyName
System.Activities.Core.Presentation (8)
System\Activities\Core\Presentation\FlowchartDesigner.ModelChangeReactions.cs (2)
95
if (string.Equals(e.Key, FlowchartSizeFeature.
WidthPropertyName
, StringComparison.Ordinal))
97
this.FlowchartWidth = (double)TypeDescriptor.GetProperties(this.ModelItem)[FlowchartSizeFeature.
WidthPropertyName
].GetValue(this.ModelItem);
System\Activities\Core\Presentation\FlowchartDesigner.xaml.cs (4)
342
this.FlowchartWidth = (double)TypeDescriptor.GetProperties(this.ModelItem)[FlowchartSizeFeature.
WidthPropertyName
].GetValue(this.ModelItem);
718
viewState[FlowchartSizeFeature.
WidthPropertyName
] = e.NewRequiredSize.Width;
2609
FlowchartSizeFeature.
WidthPropertyName
,
2610
this.ViewStateService.RetrieveViewState(this.ModelItem, FlowchartSizeFeature.
WidthPropertyName
));
System\Activities\Core\Presentation\FlowchartResizeGrip.cs (1)
104
TypeDescriptor.GetProperties(flowchartModelItem)[FlowchartSizeFeature.
WidthPropertyName
].SetValue(flowchartModelItem, flowchartDesigner.FlowchartWidth);
System\Activities\Core\Presentation\FlowchartSizeFeature.cs (1)
23
yield return new AttachedPropertyInfo<Nullable<double>> { IsBrowsable = false, PropertyName =
WidthPropertyName
, DefaultValue = DefaultWidth };