16 references to Inherited
System.Windows.Forms.Design (9)
System\ComponentModel\Design\InheritanceService.cs (1)
181
attr = InheritanceAttribute.
Inherited
;
System\Windows\Forms\Design\ControlDesigner.cs (1)
368
=> IsRootDesigner ? InheritanceAttribute.
Inherited
: base.InheritanceAttribute;
System\Windows\Forms\Design\DataGridViewDesigner.cs (1)
158
if ((base.InheritanceAttribute == InheritanceAttribute.
Inherited
)
System\Windows\Forms\Design\FlowLayoutPanelDesigner .cs (1)
362
if ((base.InheritanceAttribute == InheritanceAttribute.
Inherited
)
System\Windows\Forms\Design\TableLayoutPanelDesigner.cs (1)
1189
(base.InheritanceAttribute == InheritanceAttribute.
Inherited
)
System\Windows\Forms\Design\ToolStripDesigner.cs (1)
317
if ((base.InheritanceAttribute == InheritanceAttribute.
Inherited
))
System\Windows\Forms\Design\ToolStripDropDownDesigner.cs (1)
114
if ((base.InheritanceAttribute == InheritanceAttribute.
Inherited
))
System\Windows\Forms\Design\ToolStripItemDesigner.cs (1)
123
if ((base.InheritanceAttribute == InheritanceAttribute.
Inherited
))
System\Windows\Forms\Design\ToolStripPanelDesigner.cs (1)
93
get => Control.Parent is ToolStripContainer && (base.InheritanceAttribute == InheritanceAttribute.
Inherited
)
System.Windows.Forms.Design.Tests (7)
System\ComponentModel\Design\ComponentDesignerTests.cs (7)
284
yield return new object[] { InheritanceAttribute.
Inherited
, true };
2384
yield return new object[] { InheritanceAttribute.
Inherited
, null, null };
2385
yield return new object[] { InheritanceAttribute.
Inherited
, new Dictionary<Type, object>(), InheritanceAttribute.
Inherited
};
2424
yield return new object[] { InheritanceAttribute.
Inherited
, false };
2457
yield return new object[] { InheritanceAttribute.
Inherited
, null, null };
2458
yield return new object[] { InheritanceAttribute.
Inherited
, new Dictionary<string, object>(), new Dictionary<string, object>() };