30 references to PropertyValue
System.Activities.Presentation (30)
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\Automation\PropertyContainerAutomationPeer.cs (3)
52get { return _container.PropertyEntry.IsReadOnly || !_container.PropertyEntry.PropertyValue.CanConvertFromString; } 60get { return _container.PropertyEntry.PropertyValue.StringValue; } 187_container.PropertyEntry.PropertyValue.StringValue = value;
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\Automation\SubPropertyEditorAutomationPeer.cs (1)
150_editor.PropertyEntry.PropertyValue.HasSubProperties == true)
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\Editors\SubPropertyEditor.cs (4)
156foreach (ModelPropertyEntry subProperty in parent.PropertyValue.SubProperties) 245oldValue.PropertyValue.RootValueChanged -= new EventHandler(theThis.OnPropertyValueRootValueChanged); 251newValue.PropertyValue.RootValueChanged += new EventHandler(theThis.OnPropertyValueRootValueChanged); 345this.PropertyEntry.PropertyValue.Value = selectedTypeModel.CreateInstance();
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\Model\ModelPropertyEntryBase.cs (2)
58return this.PropertyValue.Value != null && this.Converter != null && 125return (ModelPropertyValue)this.PropertyValue;
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\Model\ModelPropertyEntryCollection.cs (5)
29: base(parentProperty.PropertyValue) 40: base(parentProperty.PropertyValue) 119_properties.Add(new ModelPropertyEntry(subProperties[i], (ModelPropertyValue)parentCollectionItem.PropertyValue)); 159entry = new ModelPropertyEntry(subPropertySet, (ModelPropertyValue)parentProperty.PropertyValue); 163entry = new ModelPropertyEntry(subPropertySet[0], (ModelPropertyValue)parentProperty.PropertyValue);
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\Model\ModelPropertyValueCollection.cs (8)
78return _values[index].PropertyValue; 150return _values[index].PropertyValue; 162return indexer.PropertyValue; 185if (_values[i].PropertyValue == propertyValue) { 258return indexer.PropertyValue; 276this.OnCollectionChanged(new NotifyCollectionChangedEventArgs(NotifyCollectionChangedAction.Replace, _values[i].PropertyValue)); 388NotifyCollectionChangedAction.Move, currentIndexer.PropertyValue, newIndex, currentIndex)); 432yield return value.PropertyValue;
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\Model\ModelUtilities.cs (1)
113return nameProperty.PropertyValue.StringValue;
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\PropertyValueDialogControl.xaml.cs (1)
66_contentControl.Content = property.PropertyValue;
System.Activities.Presentation\System\Activities\Presentation\Base\Core\PropertyEditing\PropertyContainer.cs (1)
185editor.ShowDialog(theThis.PropertyEntry.PropertyValue, dialogCommandSource);
System.Activities.Presentation\System\Activities\Presentation\Converters\ModelPropertyEntryToModelItemConverter.cs (2)
42result = new Container(item, context, item.View, propertyEntry.PropertyValue); 67result = new Container(item, context, item.View, property.PropertyValue);
System.Activities.Presentation\System\Activities\Presentation\View\DataGridHelper.cs (2)
620editor.ShowDialog(propertyEntry.PropertyValue, (IInputElement)args.OriginalSource); 764contentContainer.Content = propertyEntry.PropertyValue;