9 references to DefaultCaseDisplayNamePropertyName
System.Activities.Core.Presentation (9)
System\Activities\Core\Presentation\FlowchartDesigner.Container.cs (1)
307
item.Properties[FlowSwitchLabelFeature.
DefaultCaseDisplayNamePropertyName
].SetValue(FlowSwitchLabelFeature.DefaultCaseDisplayNameDefaultValue);
System\Activities\Core\Presentation\FlowchartDesigner.ModelChanges.cs (1)
94
realFlowSwitchMI.Properties[FlowSwitchLabelFeature.
DefaultCaseDisplayNamePropertyName
].SetValue(FlowSwitchLabelFeature.DefaultCaseDisplayNameDefaultValue);
System\Activities\Core\Presentation\FlowSwitchDesigner.xaml.cs (2)
185
(string)this.ModelItem.Properties[FlowSwitchLabelFeature.
DefaultCaseDisplayNamePropertyName
].Value.GetCurrentValue();
192
linkModelItem.Properties[FlowSwitchLabelFeature.
DefaultCaseDisplayNamePropertyName
].SetValue(defaultDisplayName);
System\Activities\Core\Presentation\FlowSwitchLabelFeature.cs (1)
22
yield return new AttachedPropertyInfo<string> { PropertyName =
DefaultCaseDisplayNamePropertyName
, IsBrowsable = false, IsVisibleToModelItem = true, DefaultValue = DefaultCaseDisplayNameDefaultValue };
System\Activities\Core\Presentation\FlowSwitchLink.cs (4)
226
this.flowSwitchModelItem.Properties[FlowSwitchLabelFeature.
DefaultCaseDisplayNamePropertyName
].SetValue(FlowSwitchLabelFeature.DefaultCaseDisplayNameDefaultValue);
353
static DependencyProperty defaultCaseDisplayNameProperty = DependencyProperty.Register(FlowSwitchLabelFeature.
DefaultCaseDisplayNamePropertyName
, typeof(string), typeof(FlowSwitchDefaultLink<T>), new FrameworkPropertyMetadata(new PropertyChangedCallback(FlowSwitchDefaultLink<T>.OnDefaultCaseDisplayNamePropertyChanged)));
359
this.DefaultCaseDisplayName = (string)this.flowSwitchModelItem.Properties[FlowSwitchLabelFeature.
DefaultCaseDisplayNamePropertyName
].Value.GetCurrentValue();
392
this.flowSwitchModelItem.Properties[FlowSwitchLabelFeature.
DefaultCaseDisplayNamePropertyName
].SetValue(newValue);