Implemented interface member:
property
Components
System.ComponentModel.IContainer.Components
12 references to Components
System.Windows.Forms.Design (6)
System\ComponentModel\Design\DesignerHost.cs (5)
717IComponent[] components = new IComponent[Components.Count]; 718Components.CopyTo(components, 0); 772while (Components.Count > 0) 774Remove(Components[0]); 1139IComponent? 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)
671Assert.Same(value, Assert.Single(container.Components)); 705Assert.Empty(container.Components);
System\Windows\Forms\TabControl.TabPageCollectionTests.cs (4)
670Assert.Same(value, Assert.Single(container.Components)); 706Assert.Empty(container.Components); 2623Assert.Same(value, Assert.Single(container.Components)); 2657Assert.Empty(container.Components);