1 instantiation of CaseKeyBoxViewModel
System.Activities.Core.Presentation (1)
System\Activities\Core\Presentation\CaseKeyBox.xaml.cs (1)
56this.ViewModel = new CaseKeyBoxViewModel(this);
12 references to CaseKeyBoxViewModel
System.Activities.Core.Presentation (12)
System\Activities\Core\Presentation\CaseKeyBox.ViewModel.cs (10)
23DependencyProperty.Register("ComboBoxIsEditable", typeof(bool), typeof(CaseKeyBoxViewModel), new UIPropertyMetadata(false)); 26DependencyProperty.Register("ComboBoxVisibility", typeof(Visibility), typeof(CaseKeyBoxViewModel), new UIPropertyMetadata(Visibility.Collapsed)); 29DependencyProperty.Register("ComboBoxItems", typeof(ObservableCollection<string>), typeof(CaseKeyBoxViewModel)); 32DependencyProperty.Register("DataTemplateName", typeof(string), typeof(CaseKeyBoxViewModel), new UIPropertyMetadata("Label")); 35DependencyProperty.Register("Text", typeof(string), typeof(CaseKeyBoxViewModel), new UIPropertyMetadata(String.Empty)); 38DependencyProperty.Register("TextBoxVisibility", typeof(Visibility), typeof(CaseKeyBoxViewModel), new UIPropertyMetadata(Visibility.Visible)); 102this.DataTemplateName = CaseKeyBoxViewModel.LabelTemplate; 109this.DataTemplateName = CaseKeyBoxViewModel.BoxesTemplate; 237if (this.DataTemplateName != CaseKeyBoxViewModel.LabelTemplate && !this.IsBoxOnly) 242this.DataTemplateName = CaseKeyBoxViewModel.LabelTemplate;
System\Activities\Core\Presentation\CaseKeyBox.xaml.cs (1)
208public CaseKeyBoxViewModel ViewModel { get; set; }
System\Activities\Core\Presentation\FlowSwitchCaseEditorDialog.cs (1)
60caseKeyBox.ViewModel.DataTemplateName = CaseKeyBoxViewModel.BoxesTemplate;