3 types derived from AttachedPropertyBrowsableAttribute
PresentationFramework (1)
src\Framework\System\Windows\AttachedPropertyBrowsableForChildrenAttribute.cs (1)
17public sealed class AttachedPropertyBrowsableForChildrenAttribute : AttachedPropertyBrowsableAttribute
WindowsBase (2)
Base\System\Windows\AttachedPropertyBrowsableForTypeAttribute.cs (1)
13public sealed class AttachedPropertyBrowsableForTypeAttribute : AttachedPropertyBrowsableAttribute
Base\System\Windows\AttachedPropertyBrowsableWhenAttributePresentAttribute.cs (1)
12public sealed class AttachedPropertyBrowsableWhenAttributePresentAttribute : AttachedPropertyBrowsableAttribute
13 references to AttachedPropertyBrowsableAttribute
WindowsBase (13)
Base\MS\Internal\ComponentModel\AttachInfo.cs (12)
62private AttachedPropertyBrowsableAttribute[] Attributes 73AttachedPropertyBrowsableAttribute[] browsableAttributes = null; 94browsableAttributes = new AttachedPropertyBrowsableAttribute[attributes.Length + 1]; 97browsableAttributes[idx] = (AttachedPropertyBrowsableAttribute)attributes[idx]; 103browsableAttributes = new AttachedPropertyBrowsableAttribute[attributes.Length]; 106browsableAttributes[idx] = (AttachedPropertyBrowsableAttribute)attributes[idx]; 130private AttachedPropertyBrowsableAttribute ParameterTypeAttribute 177AttachedPropertyBrowsableAttribute[] attrs = Attributes; 183AttachedPropertyBrowsableAttribute attr = attrs[idx]; 201AttachedPropertyBrowsableAttribute subAttr = attrs[idx2]; 242private AttachedPropertyBrowsableAttribute[] _attributes; 243private AttachedPropertyBrowsableAttribute _paramTypeAttribute;
Base\MS\Internal\ComponentModel\DependencyObjectPropertyDescriptor.cs (1)
768attachedPropertyBrowsableType = TypeDescriptor.GetReflectionType(typeof(AttachedPropertyBrowsableAttribute));