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