12 types derived from PropertyValueEditor
System.Data (12)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\Editors\BoolViewEditor.cs (1)
13internal class BoolViewEditor : PropertyValueEditor
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Core\PropertyEditing\DialogPropertyValueEditor.cs (1)
14public class DialogPropertyValueEditor : PropertyValueEditor {
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Core\PropertyEditing\ExtendedPropertyValueEditor.cs (1)
11public class ExtendedPropertyValueEditor : PropertyValueEditor {
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\PropertyEditing\VersionPropertyValueEditor.cs (1)
12internal sealed class VersionPropertyValueEditor : PropertyValueEditor
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\View\ArgumentDesigner.xaml.cs (4)
1511internal sealed class DirectionPropertyEditor : PropertyValueEditor 1527internal sealed class IsRequiredPropertyEditor : PropertyValueEditor 1535internal sealed class ValueNotSupportedEditor : PropertyValueEditor 1543internal sealed class InvalidXamlMemberValueEditor : PropertyValueEditor
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\View\HandleValueEditor.cs (1)
10sealed class HandleValueEditor : PropertyValueEditor
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\View\TypePropertyEditor.cs (1)
11sealed class TypePropertyEditor : PropertyValueEditor
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\View\VariableDesigner.xaml.cs (1)
1449internal sealed class ScopeValueEditor : PropertyValueEditor
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\View\VBIdentifierNameEditor.cs (1)
11internal class VBIdentifierNameEditor : PropertyValueEditor
1 instantiation of PropertyValueEditor
System.Data (1)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\Model\ModelPropertyEntry.cs (1)
727private static readonly PropertyValueEditor NoPropertyValueEditor = new PropertyValueEditor();
47 references to PropertyValueEditor
System.Data (47)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\ExtensibilityAccessor.cs (3)
113public static PropertyValueEditor GetCustomPropertyValueEditor(ModelProperty property) 120PropertyValueEditor editor = ExtensibilityMetadataHelper.GetValueEditor(property.Attributes, MessageLogger.Instance); 138public static PropertyValueEditor GetSubPropertyEditor(ModelProperty property)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\FromExpression\Framework\PropertyInspector\ExtensibilityMetadataHelper.cs (4)
29public static PropertyValueEditor GetValueEditor(IEnumerable attributes, IMessageLogger exceptionLogger) 31PropertyValueEditor propertyValueEditor = null; 42if (editorType != null && typeof(PropertyValueEditor).IsAssignableFrom(editorType)) 44propertyValueEditor = (PropertyValueEditor)Activator.CreateInstance(editorType);
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\Model\ModelPropertyEntry.cs (4)
202public override PropertyValueEditor PropertyValueEditor 727private static readonly PropertyValueEditor NoPropertyValueEditor = new PropertyValueEditor(); 748private PropertyValueEditor _propertyValueEditor; 992public PropertyValueEditor PropertyValueEditor
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\Model\ModelPropertyIndexer.cs (1)
143public override PropertyValueEditor PropertyValueEditor
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Core\PropertyEditing\PropertyContainer.cs (7)
400typeof(PropertyValueEditor), 412public PropertyValueEditor DefaultStandardValuesPropertyValueEditor 414get { return (PropertyValueEditor)this.GetValue(PropertyContainer.DefaultStandardValuesPropertyValueEditorProperty); } 438typeof(PropertyValueEditor), 450public PropertyValueEditor DefaultPropertyValueEditor 452get { return (PropertyValueEditor)this.GetValue(PropertyContainer.DefaultPropertyValueEditorProperty); } 629PropertyValueEditor editor = null;
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Core\PropertyEditing\propertyentry.cs (1)
101public abstract PropertyValueEditor PropertyValueEditor { get; }
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Core\PropertyEditing\PropertyValueEditor.cs (4)
56public static EditorAttribute CreateEditorAttribute(PropertyValueEditor editor) { 74if (!typeof(PropertyValueEditor).IsAssignableFrom(propertyValueEditorType)) 80typeof(PropertyValueEditor).Name))); 82return new EditorAttribute(propertyValueEditorType, typeof(PropertyValueEditor));
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\DesignerMetadata.cs (5)
35builder.AddCustomAttributes(typeof(Argument), new EditorAttribute(typeof(ExpressionValueEditor), typeof(PropertyValueEditor))); 36builder.AddCustomAttributes(typeof(Type), PropertyValueEditor.CreateEditorAttribute(typeof(TypePropertyEditor))); 38builder.AddCustomAttributes(typeof(Activity<>), new EditorAttribute(typeof(ExpressionValueEditor), typeof(PropertyValueEditor))); 70builder.AddCustomAttributes(typeof(VBIdentifierName), new EditorAttribute(typeof(VBIdentifierNameEditor), typeof(PropertyValueEditor))); 99builder.AddCustomAttributes(typeof(Version), new EditorAttribute(typeof(VersionPropertyValueEditor), typeof(PropertyValueEditor)));
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\DesignObjectWrapper.cs (11)
66IDictionary<string, PropertyValueEditor> customValueEditors = null; 156protected IDictionary<string, PropertyValueEditor> CustomValueEditors 162this.customValueEditors = new Dictionary<string, PropertyValueEditor>(); 374internal PropertyValueEditor GetDynamicPropertyValueEditor(string propertyName) 376PropertyValueEditor result = null; 391result = (PropertyValueEditor)Activator.CreateInstance(editorType); 408else if (!typeof(PropertyValueEditor).IsAssignableFrom(editorType)) 771static PropertyValueEditor GetEditor(PropertyValue propertyValue) 781var editor = wrapper.GetDynamicPropertyValueEditor(propertyValue.ParentProperty.PropertyName); 802var editor = DesignObjectWrapperDynamicPropertyEditor.GetEditor(propertyValue); 828var editor = DesignObjectWrapperDynamicPropertyEditor.GetEditor((PropertyValue)values[0]);
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Model\ModelSearchServiceImpl.cs (1)
498PropertyValueEditor propertyValueEditor = null;
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\View\ArgumentDesigner.xaml.cs (4)
827PropertyAttributes = TypeDescriptor.GetAttributes(typeof(PropertyKind)).OfType<Attribute>().Union( new Attribute[] { new EditorAttribute(typeof(DirectionPropertyEditor), typeof(PropertyValueEditor)) }).ToArray(), 839PropertyAttributes = TypeDescriptor.GetAttributes(typeof(Activity)).OfType<Attribute>().Union(new Attribute[] { new EditorAttribute(typeof(DesignObjectWrapperDynamicPropertyEditor), typeof(PropertyValueEditor)), new EditorReuseAttribute(false) }).ToArray(), 869new EditorAttribute(typeof(IsRequiredPropertyEditor), typeof(PropertyValueEditor)), 1246var referenceType = typeof(PropertyValueEditor);
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\View\VariableDesigner.xaml.cs (2)
1036PropertyAttributes = TypeDescriptor.GetAttributes(typeof(ModelItem)).OfType<Attribute>().Union(new Attribute[] { new EditorAttribute(typeof(ScopeValueEditor), typeof(PropertyValueEditor)) }).ToArray(), 1334var referenceType = typeof(PropertyValueEditor);