11 instantiations of ToolStripContainer
Accessibility_Core_App (1)
ToolStripContainer.Designer.cs (1)
33this.toolStripContainer2 = new System.Windows.Forms.ToolStripContainer();
System.Windows.Forms.Design.Tests (2)
System\Windows\Forms\Design\SplitterPanelDesignerTests.cs (1)
33using ToolStripContainer toolStripContainer = new();
System\Windows\Forms\Design\ToolStripContainerDesignerTests.cs (1)
24_toolStripContainer = new();
System.Windows.Forms.Tests (8)
System\Windows\Forms\AccessibleObjects\ToolStripContainer.ToolStripContainerAccessibleObjectTests.cs (4)
13using ToolStripContainer toolStripContainer = new(); 25using ToolStripContainer control = new() 41using ToolStripContainer control = new(); 55using ToolStripContainer control = new();
System\Windows\Forms\ToolStripContentPanelTests.cs (1)
666using ToolStripContainer parent = new()
System\Windows\Forms\ToolStripPanelRow.ToolStripPanelRowControlCollectionTests.cs (1)
15using ToolStripContainer toolStripContainer = new();
System\Windows\Forms\ToolStripPanelTests.cs (1)
345using ToolStripContainer toolStripContainer = new();
ToolStripContainerTests.cs (1)
15_toolStripContainer = new();
65 references to ToolStripContainer
Accessibility_Core_App (1)
ToolStripContainer.Designer.cs (1)
617private System.Windows.Forms.ToolStripContainer toolStripContainer2;
DesignSurface (4)
MainForm.cs (4)
261ToolStripContainer toolStripContainer = surface.CreateControl<ToolStripContainer>(new Size(200, 180), new Point(250, 280)); 293ToolStripContainer toolStripContainer = surface.CreateControl<ToolStripContainer>(new Size(800, 200), new Point(0, 0));
System.Windows.Forms (9)
System\Windows\Forms\Controls\ToolStrips\ToolStripContainer.ToolStripContainerAccessibleObject.cs (2)
13public ToolStripContainerAccessibleObject(ToolStripContainer owner) : base(owner) 20UIA_PROPERTY_ID.UIA_HasKeyboardFocusPropertyId => (VARIANT)(this.TryGetOwnerAs(out ToolStripContainer? owner) && owner.Focused),
System\Windows\Forms\Controls\ToolStrips\ToolStripContainer.ToolStripContainerTypedControlCollection.cs (2)
12private readonly ToolStripContainer _owner; 16public ToolStripContainerTypedControlCollection(ToolStripContainer c, bool isReadOnly)
System\Windows\Forms\Controls\ToolStrips\ToolStripContentPanel.cs (1)
101if (ParentInternal is ToolStripContainer && value == Color.Transparent)
System\Windows\Forms\Controls\ToolStrips\ToolStripPanel.cs (2)
19private readonly ToolStripContainer? _owner; 56internal ToolStripPanel(ToolStripContainer owner)
System\Windows\Forms\Controls\ToolStrips\ToolStripSettingsManager.cs (1)
147if (string.IsNullOrEmpty(toolStripPanelName) && toolStripPanel.Parent is ToolStripContainer && !string.IsNullOrEmpty(toolStripPanel.Parent.Name))
System\Windows\Forms\Controls\ToolStrips\ToolStripSettingsManager.SettingsStub.cs (1)
32else if (parentPanel.Parent is ToolStripContainer && !string.IsNullOrEmpty(parentPanel.Parent.Name))
System.Windows.Forms.Design (37)
System\ComponentModel\Design\ToolStripContainerActionList.cs (8)
15private readonly ToolStripContainer _toolStripContainer; 22public ToolStripContainerActionList(ToolStripContainer toolStripContainer) : base(toolStripContainer) 85/// Checks if the <see cref="ToolStripContainer" /> is dock filled. 147DesignerTransaction? changeParent = _designerHost.CreateTransaction(string.Format(SR._0_reparent_controls_transaction, nameof(ToolStripContainer))); 241get => (bool)(GetProperty(_toolStripContainer, nameof(ToolStripContainer.TopToolStripPanelVisible)) ?? false); 256get => (bool)(GetProperty(_toolStripContainer, nameof(ToolStripContainer.BottomToolStripPanelVisible)) ?? false); 271get => (bool)(GetProperty(_toolStripContainer, nameof(ToolStripContainer.LeftToolStripPanelVisible)) ?? false); 286get => (bool)(GetProperty(_toolStripContainer, nameof(ToolStripContainer.RightToolStripPanelVisible)) ?? false);
System\Windows\Forms\Design\Behavior\ToolStripPanelSelectionGlyph.cs (2)
68ToolStripContainer? parent = _relatedPanel?.Parent as ToolStripContainer;
System\Windows\Forms\Design\ChangeToolStripParentVerb.cs (3)
54ToolboxItem toolboxItem = new(typeof(ToolStripContainer)); 59if (newComp[0] is ToolStripContainer tsc) 120private static Control GetParent(ToolStripContainer container, Control c)
System\Windows\Forms\Design\ToolStripContainerDesigner.cs (14)
30private ToolStripContainer? _toolStripContainer; 38/// Shadow the <see cref="ToolStripContainer.TopToolStripPanelVisible"/> property at design-time 47((ToolStripContainer)Component).TopToolStripPanelVisible = value; 52/// Shadow the <see cref="ToolStripContainer.LeftToolStripPanelVisible"/> property at design-time 61((ToolStripContainer)Component).LeftToolStripPanelVisible = value; 66/// Shadow the <see cref="ToolStripContainer.RightToolStripPanelVisible"/> property at design-time 75((ToolStripContainer)Component).RightToolStripPanelVisible = value; 80/// Shadow the <see cref="ToolStripContainer.BottomToolStripPanelVisible"/> property at design-time 89((ToolStripContainer)Component).BottomToolStripPanelVisible = value; 203private static ToolStripContainer? ContainerParent(Control control) 205if (control is null or ToolStripContainer) 212if (control.Parent is ToolStripContainer parent) 252ToolStripContainer? container = ContainerParent(control); 361_toolStripContainer = (ToolStripContainer)component;
System\Windows\Forms\Design\ToolStripContentPanelDesigner.cs (1)
59if (panel is not null && panel.Parent is ToolStripContainer)
System\Windows\Forms\Design\ToolStripPanelDesigner.cs (9)
93get => Control.Parent is ToolStripContainer && (base.InheritanceAttribute == InheritanceAttribute.Inherited) 118=> Control.Parent is ToolStripContainer 153=> Control.Parent is not ToolStripContainer; 176if (Control.Parent is ToolStripContainer { ContentPanel: { } contentPanel } 312ToolStripContainer? parent = Control.Parent as ToolStripContainer; 416if (Control.Parent is ToolStripContainer) 484if (Control.Parent is ToolStripContainer) 537if (Control.Parent is ToolStripContainer)
System.Windows.Forms.Design.Tests (2)
System\Windows\Forms\Design\SplitterPanelDesignerTests.cs (1)
33using ToolStripContainer toolStripContainer = new();
System\Windows\Forms\Design\ToolStripContainerDesignerTests.cs (1)
18private readonly ToolStripContainer _toolStripContainer;
System.Windows.Forms.Tests (12)
System\Windows\Forms\AccessibleObjects\ToolStripContainer.ToolStripContainerAccessibleObjectTests.cs (8)
13using ToolStripContainer toolStripContainer = new(); 14ToolStripContainer.ToolStripContainerAccessibleObject accessibleObject = new(toolStripContainer); 25using ToolStripContainer control = new() 31var accessibleObject = new ToolStripContainer.ToolStripContainerAccessibleObject(control); 41using ToolStripContainer control = new(); 43var accessibleObject = new ToolStripContainer.ToolStripContainerAccessibleObject(control); 55using ToolStripContainer control = new(); 57var accessibleObject = new ToolStripContainer.ToolStripContainerAccessibleObject(control);
System\Windows\Forms\ToolStripContentPanelTests.cs (1)
666using ToolStripContainer parent = new()
System\Windows\Forms\ToolStripPanelRow.ToolStripPanelRowControlCollectionTests.cs (1)
15using ToolStripContainer toolStripContainer = new();
System\Windows\Forms\ToolStripPanelTests.cs (1)
345using ToolStripContainer toolStripContainer = new();
ToolStripContainerTests.cs (1)
11private readonly ToolStripContainer _toolStripContainer;