8 references to SetValues
PresentationFramework (1)
src\Framework\System\Windows\Markup\Primitives\ElementMarkupObject.cs (1)
430private static Attribute[] _propertyAttributes = new Attribute[] { new PropertyFilterAttribute(PropertyFilterOptions.SetValues) };
WindowsBase (7)
Base\MS\Internal\ComponentModel\APCustomTypeDescriptor.cs (4)
77PropertyFilterOptions filter = PropertyFilterOptions.Valid | PropertyFilterOptions.SetValues; 111if (filter == PropertyFilterOptions.SetValues) 145PropertyFilterOptions anySet = PropertyFilterOptions.SetValues | PropertyFilterOptions.UnsetValues; 166else if ((filter & PropertyFilterOptions.SetValues) != 0 && _instance.ContainsValue(dp) && !kind.IsDirect && !kind.IsInternal)
Base\MS\Internal\ComponentModel\DPCustomTypeDescriptor.cs (3)
98PropertyFilterOptions filter = PropertyFilterOptions.Valid | PropertyFilterOptions.SetValues; 125if (filter == PropertyFilterOptions.SetValues) 393private const PropertyFilterOptions _anySet = PropertyFilterOptions.SetValues | PropertyFilterOptions.UnsetValues;