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