2 types derived from FlowSwitchLink
System.Activities.Core.Presentation (2)
System\Activities\Core\Presentation\FlowSwitchLink.cs (2)
351class FlowSwitchDefaultLink<T> : FlowSwitchLink<T>, IFlowSwitchDefaultLink 413class FlowSwitchCaseLink<T> : FlowSwitchLink<T>
15 references to FlowSwitchLink
System.Activities.Core.Presentation (15)
System\Activities\Core\Presentation\FlowSwitchLink.cs (15)
18static DependencyProperty caseProperty = DependencyProperty.Register("Case", typeof(T), typeof(FlowSwitchLink<T>), new FrameworkPropertyMetadata(new PropertyChangedCallback(FlowSwitchLink<T>.OnCasePropertyChanged))); 19static DependencyProperty isDefaultCaseProperty = DependencyProperty.Register("IsDefault", typeof(bool), typeof(FlowSwitchLink<T>), new FrameworkPropertyMetadata(new PropertyChangedCallback(FlowSwitchLink<T>.OnIsDefaultCasePropertyChanged))); 79return (bool)GetValue(FlowSwitchLink<T>.isDefaultCaseProperty); 83SetValue(FlowSwitchLink<T>.isDefaultCaseProperty, value); 92object value = GetValue(FlowSwitchLink<T>.caseProperty); 102return GetValue(FlowSwitchLink<T>.caseProperty); 106SetValue(FlowSwitchLink<T>.caseProperty, value); 115return (T)GetValue(FlowSwitchLink<T>.caseProperty); 119SetValue(FlowSwitchLink<T>.caseProperty, value); 326FlowSwitchLink<T> link = (FlowSwitchLink<T>)dependencyObject; 332FlowSwitchLink<T> link = (FlowSwitchLink<T>)dependencyObject;