Implemented interface member:
property
Components
System.ComponentModel.IContainer.Components
12 references to Components
System.Windows.Forms.Design (6)
System\ComponentModel\Design\DesignerHost.cs (5)
720IComponent[] components = new IComponent[Components.Count]; 721Components.CopyTo(components, 0); 775while (Components.Count > 0) 777Remove(Components[0]); 1142IComponent? component = Components[name];
System\ComponentModel\Design\DesignerHost.Site.cs (1)
235IComponent? namedComponent = _container.Components[value];
System.Windows.Forms.Tests (6)
System\Windows\Forms\TabControl.ControlCollectionTests.cs (2)
669Assert.Same(value, Assert.Single(container.Components)); 703Assert.Empty(container.Components);
System\Windows\Forms\TabControl.TabPageCollectionTests.cs (4)
668Assert.Same(value, Assert.Single(container.Components)); 704Assert.Empty(container.Components); 2621Assert.Same(value, Assert.Single(container.Components)); 2655Assert.Empty(container.Components);