2 types derived from Container
System.ComponentModel.TypeConverter (1)
System\ComponentModel\NestedContainer.cs (1)
16public class NestedContainer : Container, INestedContainer
System.Windows.Forms.Design (1)
System\ComponentModel\Design\DesignerHost.cs (1)
17internal sealed partial class DesignerHost : Container, IDesignerLoaderHost2, IDesignerHostTransactionState, IComponentChangeService, IReflect
1 instantiation of Container
System.Windows.Forms.Design (1)
System\Windows\Forms\Design\MaskDesignerDialog.cs (1)
121_components = new Container();
13 references to Container
Microsoft.VisualBasic.Forms (1)
Microsoft\VisualBasic\Helpers\VBInputBox.vb (1)
16Private ReadOnly components As Container
netstandard (1)
netstandard.cs (1)
206[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.ComponentModel.Container))]
System (1)
src\runtime\src\libraries\shims\System\ref\System.cs (1)
192[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.ComponentModel.Container))]
System.ComponentModel.TypeConverter (7)
System\ComponentModel\Container.cs (7)
24/// Adds the specified component to the <see cref='System.ComponentModel.Container'/> 32/// Adds the specified component to the <see cref='System.ComponentModel.Container'/> and assigns 133/// Gets all the components in the <see cref='System.ComponentModel.Container'/>. 179/// Removes a component from the <see cref='System.ComponentModel.Container'/>. 249internal Site(IComponent component, Container container, string? name) 268return ((service == typeof(ISite)) ? this : ((Container)Container).GetService(service)); 287((Container)Container).ValidateName(Component, value);
System.Windows.Forms.Design (3)
System\ComponentModel\Design\DesignerHost.Site.cs (2)
21private readonly Container _container; 23internal Site(IComponent component, DesignerHost host, string? name, Container container)
System\ComponentModel\Design\Serialization\ContainerCodeDomSerializer.cs (1)
69CodeObjectCreateExpression objCreate = new(typeof(Container));