8 instantiations of ParenthesizePropertyNameAttribute
System.ComponentModel.Primitives (1)
System\ComponentModel\ParenthesizePropertyNameAttribute.cs (1)
19public static readonly ParenthesizePropertyNameAttribute Default = new ParenthesizePropertyNameAttribute();
System.Windows.Forms (4)
System\Windows\Forms\ComponentModel\COM2Interop\COM2AboutBoxPropertyDescriptor.cs (1)
24new ParenthesizePropertyNameAttribute(true)
System\Windows\Forms\ComponentModel\COM2Interop\COM2TypeInfoProcessor.cs (1)
582info.Attributes.Add(new ParenthesizePropertyNameAttribute(true));
System\Windows\Forms\Control.cs (1)
1524[ParenthesizePropertyName(true)]
System\Windows\Forms\DataBinding\BindableComponent.cs (1)
75[ParenthesizePropertyName(true)]
System.Windows.Forms.Design (3)
System\Windows\Forms\Design\DataGridViewColumnDesigner.cs (2)
254new ParenthesizePropertyNameAttribute(true)); 262new ParenthesizePropertyNameAttribute(true));
System\Windows\Forms\Design\DesignerExtenders.NameExtenderProvider.cs (1)
72[ParenthesizePropertyName(true)]
6 references to ParenthesizePropertyNameAttribute
netstandard (1)
netstandard.cs (1)
386[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.ComponentModel.ParenthesizePropertyNameAttribute))]
System (1)
src\libraries\shims\System\ref\System.cs (1)
372[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.ComponentModel.ParenthesizePropertyNameAttribute))]
System.ComponentModel.Primitives (2)
System\ComponentModel\ParenthesizePropertyNameAttribute.cs (2)
19public static readonly ParenthesizePropertyNameAttribute Default = new ParenthesizePropertyNameAttribute(); 45obj is ParenthesizePropertyNameAttribute other && other.NeedParenthesis == NeedParenthesis;
System.Windows.Forms (2)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\GridEntry.cs (1)
2108if (props[i].GetAttribute<ParenthesizePropertyNameAttribute>()?.NeedParenthesis ?? false)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyDescriptorGridEntry.cs (1)
140_parensAroundName = PropertyDescriptor.GetAttribute<ParenthesizePropertyNameAttribute>()?.NeedParenthesis ?? false;