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