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