1 instantiation of CaseKeyBox
System.Activities.Core.Presentation (1)
System\Activities\Core\Presentation\FlowSwitchCaseEditorDialog.cs (1)
49
caseKeyBox = new
CaseKeyBox
()
23 references to CaseKeyBox
System.Activities.Core.Presentation (23)
System\Activities\Core\Presentation\CaseDesigner.xaml.cs (1)
53
public Action<
CaseKeyBox
> FocusSelf
System\Activities\Core\Presentation\CaseKeyBox.xaml.cs (16)
19
DependencyProperty.Register("DisplayHintText", typeof(bool), typeof(
CaseKeyBox
));
22
DependencyProperty.Register("LabelText", typeof(string), typeof(
CaseKeyBox
), new UIPropertyMetadata(string.Empty));
25
DependencyProperty.Register("Value", typeof(object), typeof(
CaseKeyBox
), new PropertyMetadata(OnValueChanged));
28
DependencyProperty.Register("ValueType", typeof(Type), typeof(
CaseKeyBox
), new PropertyMetadata(OnValueTypeChanged));
31
DependencyProperty.Register("EditorAutomationName", typeof(string), typeof(
CaseKeyBox
));
34
DependencyProperty.Register("ComboBoxAutomationName", typeof(string), typeof(
CaseKeyBox
));
37
EventManager.RegisterRoutedEvent("ValueCommitted", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(
CaseKeyBox
));
40
EventManager.RegisterRoutedEvent("EditCancelled", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(
CaseKeyBox
));
43
DependencyProperty.Register("CaseKeyValidationCallback", typeof(CaseKeyValidationCallbackDelegate), typeof(
CaseKeyBox
));
46
DependencyProperty.Register("ErrorCallback", typeof(Action<
CaseKeyBox
>), typeof(
CaseKeyBox
));
49
DependencyProperty.Register("CommitExplicitly", typeof(bool), typeof(
CaseKeyBox
), new PropertyMetadata(false));
92
public Action<
CaseKeyBox
> ErrorCallback
94
get { return (Action<
CaseKeyBox
>)GetValue(ErrorCallbackProperty); }
212
((
CaseKeyBox
)sender).ViewModel.OnValueChanged();
217
((
CaseKeyBox
)sender).ViewModel.OnValueTypeChanged();
System\Activities\Core\Presentation\FlowSwitchCaseEditorDialog.cs (2)
33
CaseKeyBox
caseKeyBox;
62
caseKeyBox.SetBinding(
CaseKeyBox
.ValueProperty, new Binding()
System\Activities\Core\Presentation\SwitchDesigner.xaml.cs (2)
64
CaseKeyBox
caseKeyBox;
404
this.caseKeyBox = (
CaseKeyBox
)sender;
System\Activities\Core\Presentation\TransitionDesigner.xaml.cs (2)
44
private
CaseKeyBox
addNewTransitionBox = null;
105
this.addNewTransitionBox = (
CaseKeyBox
)sender;