1 instantiation of FlowSwitchDefaultLink
System.Activities.Core.Presentation (1)
System\Activities\Core\Presentation\GenericFlowSwitchHelper.cs (1)
173return new FlowSwitchDefaultLink<T>(currentMI, caseValue, isDefault);
7 references to FlowSwitchDefaultLink
System.Activities.Core.Presentation (7)
System\Activities\Core\Presentation\FlowSwitchDefaultLinkFeature.cs (1)
22builder.AddCustomAttributes(typeof(FlowSwitchDefaultLink<>), "DefaultCaseDisplayName", BrowsableAttribute.No);
System\Activities\Core\Presentation\FlowSwitchLink.cs (6)
353static DependencyProperty defaultCaseDisplayNameProperty = DependencyProperty.Register(FlowSwitchLabelFeature.DefaultCaseDisplayNamePropertyName, typeof(string), typeof(FlowSwitchDefaultLink<T>), new FrameworkPropertyMetadata(new PropertyChangedCallback(FlowSwitchDefaultLink<T>.OnDefaultCaseDisplayNamePropertyChanged))); 367return (string)GetValue(FlowSwitchDefaultLink<T>.defaultCaseDisplayNameProperty); 371SetValue(FlowSwitchDefaultLink<T>.defaultCaseDisplayNameProperty, value); 401FlowSwitchDefaultLink<T> link = (FlowSwitchDefaultLink<T>)dependencyObject;