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