4 overrides of InheritanceAttribute
System.Windows.Forms.Design (3)
System\Windows\Forms\Design\ControlDesigner.cs (1)
367protected override InheritanceAttribute? InheritanceAttribute
System\Windows\Forms\Design\ToolStripDropDownDesigner.cs (1)
110protected override InheritanceAttribute InheritanceAttribute
System\Windows\Forms\Design\ToolStripItemDesigner.cs (1)
119protected override InheritanceAttribute InheritanceAttribute
System.Windows.Forms.Design.Tests (1)
System\ComponentModel\Design\ComponentDesignerTests.cs (1)
2985protected override InheritanceAttribute InheritanceAttribute => InheritanceAttribute1;
16 references to InheritanceAttribute
System.Windows.Forms.Design (15)
System\ComponentModel\Design\ComponentDesigner.cs (10)
58[MemberNotNullWhen(true, nameof(InheritanceAttribute))] 63InheritanceAttribute? inheritanceAttribute = InheritanceAttribute; 69=> InheritanceAttribute!.InheritanceLevel == InheritanceLevel.InheritedReadOnly; 395InheritanceAttribute? inheritanceAttribute = InheritanceAttribute; 405InheritanceAttribute? inheritanceAttribute = InheritanceAttribute; 447=> toInvoke?.InheritanceAttribute; 609InheritanceAttribute? inheritanceAttribute = InheritanceAttribute; 612attributes[typeof(InheritanceAttribute)] = InheritanceAttribute; 627InheritanceAttribute? inheritanceAttribute = InheritanceAttribute; 656bool readOnlyInherit = InheritanceAttribute.InheritedReadOnly.Equals(InheritanceAttribute);
System\Windows\Forms\Design\ControlDesigner.cs (1)
368=> IsRootDesigner ? InheritanceAttribute.Inherited : base.InheritanceAttribute;
System\Windows\Forms\Design\ToolStripDropDownDesigner.cs (2)
114if ((base.InheritanceAttribute == InheritanceAttribute.Inherited)) 119return base.InheritanceAttribute;
System\Windows\Forms\Design\ToolStripItemDesigner.cs (2)
123if ((base.InheritanceAttribute == InheritanceAttribute.Inherited)) 128return base.InheritanceAttribute;
System.Windows.Forms.Design.Tests (1)
System\ComponentModel\Design\ComponentDesignerTests.cs (1)
2930public new InheritanceAttribute InheritanceAttribute => base.InheritanceAttribute;