1 type derived from PropertyValue
System.Data (1)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\Model\ModelPropertyValue.cs (1)
32internal class ModelPropertyValue : PropertyValue
61 references to PropertyValue
System.Data (61)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\Editors\EditorUtilities.cs (2)
71PropertyValue propertyValue = item as PropertyValue;
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\Editors\PropertyValueToDisplayNameConverter.cs (2)
51PropertyValue propertyValue = value as PropertyValue;
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\Editors\PropertyValueToStandardValuesConverter.cs (2)
36PropertyValue propertyValue = value as PropertyValue;
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\Model\ModelPropertyEntry.cs (2)
470PropertyValue parentValue = this.ParentValue; 651protected override PropertyValue CreatePropertyValueInstance()
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\Model\ModelPropertyEntryBase.cs (1)
37protected ModelPropertyEntryBase(PropertyValue parentValue) : base(parentValue)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\Model\ModelPropertyIndexer.cs (1)
256protected override PropertyValue CreatePropertyValueInstance()
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\Model\ModelPropertyValue.cs (1)
138public PropertyValue NameSensitiveInstance
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\Model\ModelPropertyValueCollection.cs (10)
75public override PropertyValue this[int index] { 87public override PropertyValue Add(object value) 98public override PropertyValue Insert(object value, int index) 123private PropertyValue InsertExternal(ModelItem item, int index) 130PropertyValue insertedValue = InsertHelper(item, index); 139private PropertyValue InsertHelper(ModelItem item, int index) 171public override bool Remove(PropertyValue propertyValue) 239PropertyValue removedValue = RemoveAtHelper(index); 246private PropertyValue RemoveAtHelper(int index) 423public override IEnumerator<PropertyValue> GetEnumerator()
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\Model\ModelUtilities.cs (1)
101public static string GetPropertyName(PropertyValue propertyValue)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Core\PropertyEditing\DialogPropertyValueEditor.cs (1)
58public virtual void ShowDialog(PropertyValue propertyValue, IInputElement commandSource) {
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Core\PropertyEditing\propertyentry.cs (6)
16private PropertyValue _parentValue; 18private PropertyValue _value; 31protected PropertyEntry(PropertyValue parentValue) { 107public PropertyValue ParentValue { 116public PropertyValue PropertyValue { 129protected abstract PropertyValue CreatePropertyValueInstance();
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Core\PropertyEditing\propertyentrycollection.cs (3)
16private PropertyValue _parentValue; 23protected PropertyEntryCollection(PropertyValue parentValue) 34public PropertyValue ParentValue { get { return _parentValue; } }
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Core\PropertyEditing\PropertyValueCollection.cs (9)
14public abstract class PropertyValueCollection : IEnumerable<PropertyValue>, INotifyCollectionChanged 22private PropertyValue _parentValue; 30protected PropertyValueCollection(PropertyValue parentValue) 41public PropertyValue ParentValue { get { return _parentValue; } } 48public abstract PropertyValue this[int index] { get; } 55public abstract PropertyValue Add(object value); 63public abstract PropertyValue Insert(object value, int index); 71public abstract bool Remove(PropertyValue propertyValue); 98public abstract IEnumerator<PropertyValue> GetEnumerator();
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Core\PropertyEditing\PropertyValueExceptionEventArgs.cs (3)
16private PropertyValue _value; 30public PropertyValueExceptionEventArgs(string message, PropertyValue value, PropertyValueExceptionSource source, Exception exception) 51public PropertyValue PropertyValue { get { return _value; } }
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Converters\ModelPropertyEntryToModelItemConverter.cs (6)
28PropertyValue propertyValue = value as PropertyValue; 155DependencyProperty.Register("PropertyValue", typeof(PropertyValue), typeof(Container), new UIPropertyMetadata(null)); 157public Container(ModelItem item, EditingContext context, DependencyObject viewElement, PropertyValue value) 183public PropertyValue PropertyValue 185get { return (PropertyValue)GetValue(PropertyValueProperty); }
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\DesignObjectWrapper.cs (3)
771static PropertyValueEditor GetEditor(PropertyValue propertyValue) 799public override void ShowDialog(PropertyValue propertyValue, IInputElement commandSource) 828var editor = DesignObjectWrapperDynamicPropertyEditor.GetEditor((PropertyValue)values[0]);
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\View\ExpressionValueEditor.cs (4)
25public override void ShowDialog(PropertyValue propertyValue, IInputElement commandSource) 51public EditorDialog(DependencyObject owner, PropertyValue propertyValue, EditingContext context, DataTemplate dialogTemplate, string title) 76PropertyValue propertyValue = (PropertyValue)presenter.Content;
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\View\PropertyEntryToEditingContextConverter.cs (2)
18PropertyValue propertyValue = value as PropertyValue;
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\View\PropertyEntryToEditorOptionConverter.cs (2)
25PropertyValue propertyValue = value as PropertyValue;