4 writes to Value
System.Data (4)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\View\TreeView\TreeViewItemKeyValuePairModelItemViewModel.cs (1)
19this.Value = value;
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\View\TreeView\TreeViewItemModelItemViewModel.cs (1)
30this.Value = modelItem;
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\View\TreeView\TreeViewItemModelPropertyViewModel.cs (1)
21this.Value = property;
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\View\TreeView\TreeViewItemViewModel.cs (1)
695Value = default(T);
38 references to Value
System.Data (38)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\View\TreeView\TreeViewItemKeyValuePairModelItemViewModel.cs (7)
36if (this.Value.Value != null) 40this.AddChild(TreeViewItemViewModel.CreateViewModel(this, this.Value.Value), tracker.ParentProperty); 58if (this.Value.Value != null) 60this.AddChild(TreeViewItemViewModel.CreateViewModel(this, this.Value.Value), tracker.ParentProperty); 72if (this.Value.Value != null) 80if (this.Value.Key != null) 82return this.Value.Key.GetEditingContext();
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\View\TreeView\TreeViewItemModelItemViewModel.cs (9)
122TreeViewItemViewModel.AddModelItem(this, this.Value, null); 179TreeViewItemViewModel.AddModelProperty(this, this.Value, tracker.ParentProperty, tracker.ParentProperty); 192if (this.Value != null) 194this.State |= this.UpdateModelItemState(this.Value); 203foreach (ModelProperty property in this.Value.Properties) 243tracker.Add(this.Value, modelProperty); 264if (this.Value != null) 266return this.Value.GetEditingContext(); 405if (modelPropertyViewModel.Value == property)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\View\TreeView\TreeViewItemModelPropertyViewModel.cs (19)
40Fx.Assert(this.Value == modelProperty, "The modelProperty should be the same as this.Value."); 82if (this.Value.IsCollection) 84ModelItemCollection mc = this.Value.Value as ModelItemCollection; 85TreeViewItemViewModel.AddModelItemCollection(this, mc, this.Value); 87else if (this.Value.IsDictionary) 89ModelItemDictionary dictionary = this.Value.Dictionary; 90TreeViewItemViewModel.AddModelItemDictionary(this, dictionary, this.Value); 92else if (this.Value.Value != null) 94TreeViewItemViewModel.AddChild(this, this.Value.Value, this.Value.Value, this.DuplicatedNodeVisible, string.Empty, this.Value); 105if (this.Value.Value != null || (this.Value.IsCollection && this.Value.Collection.Count > 0) || 106(this.Value.IsDictionary && this.Value.Dictionary.Count > 0)) 116if (this.Value != null && this.Value.Parent != null) 118return this.Value.Parent.GetEditingContext();
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\View\TreeView\TreeViewItemViewModel.cs (3)
679if (Value != null) 681return Value.ToString(); 689return this.Value;