8 references to HeightPropertyName
System.Activities.Core.Presentation (8)
System\Activities\Core\Presentation\FlowchartDesigner.ModelChangeReactions.cs (2)
99
else if (string.Equals(e.Key, FlowchartSizeFeature.
HeightPropertyName
, StringComparison.Ordinal))
101
this.FlowchartHeight = (double)TypeDescriptor.GetProperties(this.ModelItem)[FlowchartSizeFeature.
HeightPropertyName
].GetValue(this.ModelItem);
System\Activities\Core\Presentation\FlowchartDesigner.xaml.cs (4)
343
this.FlowchartHeight = (double)TypeDescriptor.GetProperties(this.ModelItem)[FlowchartSizeFeature.
HeightPropertyName
].GetValue(this.ModelItem);
724
viewState[FlowchartSizeFeature.
HeightPropertyName
] = e.NewRequiredSize.Height;
2614
FlowchartSizeFeature.
HeightPropertyName
,
2615
this.ViewStateService.RetrieveViewState(this.ModelItem, FlowchartSizeFeature.
HeightPropertyName
));
System\Activities\Core\Presentation\FlowchartResizeGrip.cs (1)
105
TypeDescriptor.GetProperties(flowchartModelItem)[FlowchartSizeFeature.
HeightPropertyName
].SetValue(flowchartModelItem, flowchartDesigner.FlowchartHeight);
System\Activities\Core\Presentation\FlowchartSizeFeature.cs (1)
24
yield return new AttachedPropertyInfo<Nullable<double>> { IsBrowsable = false, PropertyName =
HeightPropertyName
, DefaultValue = DefaultHeight };