4 instantiations of ToolStripPanel
System.Windows.Forms (4)
System\Windows\Forms\Controls\ToolStrips\ToolStripContainer.cs (4)
27_topPanel = new ToolStripPanel(this); 28_bottomPanel = new ToolStripPanel(this); 29_leftPanel = new ToolStripPanel(this); 30_rightPanel = new ToolStripPanel(this);
110 references to ToolStripPanel
System.Windows.Forms (41)
System\Windows\Forms\Controls\ToolStrips\ToolStrip.cs (1)
1997ToolStripPanel.ClearDragFeedback();
System\Windows\Forms\Controls\ToolStrips\ToolStripContainer.cs (8)
13private readonly ToolStripPanel _topPanel; 14private readonly ToolStripPanel _bottomPanel; 15private readonly ToolStripPanel _leftPanel; 16private readonly ToolStripPanel _rightPanel; 142public ToolStripPanel BottomToolStripPanel 260public ToolStripPanel LeftToolStripPanel 287public ToolStripPanel RightToolStripPanel 316public ToolStripPanel TopToolStripPanel
System\Windows\Forms\Controls\ToolStrips\ToolStripContainer.ToolStripContainerTypedControlCollection.cs (3)
14private readonly Type _panelType = typeof(ToolStripPanel); 45if (value is ToolStripPanel or ToolStripContentPanel) 61if (child is ToolStripPanel or ToolStripContentPanel)
System\Windows\Forms\Controls\ToolStrips\ToolStripGrip.cs (1)
226ToolStripPanel.ClearDragFeedback();
System\Windows\Forms\Controls\ToolStrips\ToolStripManager.cs (4)
18private static WeakRefCollection<ToolStripPanel>? t_activeToolStripPanels; 567internal static WeakRefCollection<ToolStripPanel> ToolStripPanels 570internal static ToolStripPanel? ToolStripPanelFromPoint(Control draggedControl, Point screenLocation) 577foreach (ToolStripPanel toolStripPanel in t_activeToolStripPanels)
System\Windows\Forms\Controls\ToolStrips\ToolStripPanel.cs (2)
12[ToolboxBitmap(typeof(ToolStripPanel), "ToolStripPanel_standalone")] 986ToolStripPanel? panel = ToolStripManager.ToolStripPanelFromPoint(toolStripToDrag, screenLocation);
System\Windows\Forms\Controls\ToolStrips\ToolStripPanel.ToolStripPanelAccessibleObject.cs (2)
13public ToolStripPanelAccessibleObject(ToolStripPanel owner) : base(owner) 21UIA_PROPERTY_ID.UIA_IsKeyboardFocusablePropertyId => (VARIANT)(this.TryGetOwnerAs(out ToolStripPanel? owner) && owner.CanFocus),
System\Windows\Forms\Controls\ToolStrips\ToolStripPanel.ToolStripPanelControlCollection.cs (2)
12private readonly ToolStripPanel _owner; 14public ToolStripPanelControlCollection(ToolStripPanel owner)
System\Windows\Forms\Controls\ToolStrips\ToolStripPanel.ToolStripPanelRowCollection.cs (5)
15private readonly ToolStripPanel _owner; 17public ToolStripPanelRowCollection(ToolStripPanel owner) 22public ToolStripPanelRowCollection(ToolStripPanel owner, ToolStripPanelRow[] value) 52ToolStripPanel currentOwner = _owner; 72ToolStripPanel currentOwner = _owner;
System\Windows\Forms\Controls\ToolStrips\ToolStripPanelRenderEventArgs.cs (2)
13public ToolStripPanelRenderEventArgs(Graphics g, ToolStripPanel toolStripPanel) 27public ToolStripPanel ToolStripPanel { get; }
System\Windows\Forms\Controls\ToolStrips\ToolStripPanelRow.cs (3)
38public ToolStripPanelRow(ToolStripPanel parent) 43internal ToolStripPanelRow(ToolStripPanel parent, bool visible) 236public ToolStripPanel ToolStripPanel { get; }
System\Windows\Forms\Controls\ToolStrips\ToolStripPanelRow.ToolStripPanelRowControlCollection.cs (2)
63public ToolStripPanel ToolStripPanel 92ToolStripPanel currentOwner = ToolStripPanel;
System\Windows\Forms\Controls\ToolStrips\ToolStripPanelRow.ToolStripPanelRowManager.cs (1)
47public ToolStripPanel ToolStripPanel
System\Windows\Forms\Controls\ToolStrips\ToolstripProfessionalRenderer.cs (1)
785ToolStripPanel toolStripPanel = e.ToolStripPanel;
System\Windows\Forms\Controls\ToolStrips\ToolStripRenderer.cs (1)
571protected internal virtual void InitializePanel(ToolStripPanel toolStripPanel)
System\Windows\Forms\Controls\ToolStrips\ToolStripSettingsManager.cs (2)
134List<ToolStripPanel> toolStripPanels = []; 136foreach (ToolStripPanel toolStripPanel in toolStripPanels)
System\Windows\Forms\Controls\ToolStrips\ToolStripSettingsManager.SettingsStub.cs (1)
26if (toolStrip.Parent is ToolStripPanel parentPanel)
System.Windows.Forms.Design (69)
System\ComponentModel\Design\ToolStripContainerActionList.cs (3)
48ToolStripPanel? panel = component as ToolStripPanel; 217if (panel is ToolStripPanel && panel.Dock == dock)
System\Windows\Forms\Design\Behavior\ToolStripPanelSelectionBehavior.cs (2)
13private readonly ToolStripPanel _relatedControl; 19internal ToolStripPanelSelectionBehavior(ToolStripPanel containerControl, IServiceProvider serviceProvider)
System\Windows\Forms\Design\Behavior\ToolStripPanelSelectionGlyph.cs (2)
12private readonly ToolStripPanel? _relatedPanel; 27_relatedPanel = relatedComponent as ToolStripPanel;
System\Windows\Forms\Design\ChangeToolStripParentVerb.cs (2)
121if (c.Parent is ToolStripPanel) 128if (panel is ToolStripPanel)
System\Windows\Forms\Design\ToolStripActionList.cs (1)
168if (_toolStrip.Parent is not ToolStripPanel)
System\Windows\Forms\Design\ToolStripContainerDesigner.cs (9)
15private ToolStripPanel? _topToolStripPanel; 16private ToolStripPanel? _bottomToolStripPanel; 17private ToolStripPanel? _leftToolStripPanel; 18private ToolStripPanel? _rightToolStripPanel; 199private ToolStripPanelDesigner? GetDesigner(ToolStripPanel panel) => _designerHost.GetDesigner(panel) as ToolStripPanelDesigner; 374ToolboxBitmapAttribute bottomToolboxBitmapAttribute = new(typeof(ToolStripPanel), "ToolStripContainer_BottomToolStripPanel"); 375ToolboxBitmapAttribute rightToolboxBitmapAttribute = new(typeof(ToolStripPanel), "ToolStripContainer_RightToolStripPanel"); 376ToolboxBitmapAttribute topToolboxBitmapAttribute = new(typeof(ToolStripPanel), "ToolStripContainer_TopToolStripPanel"); 377ToolboxBitmapAttribute leftToolboxBitmapAttribute = new(typeof(ToolStripPanel), "ToolStripContainer_LeftToolStripPanel");
System\Windows\Forms\Design\ToolStripDesigner.cs (4)
189internal override bool ControlSupportsSnaplines => ToolStrip.Parent is not ToolStripPanel; 1496ToolStripPanel parentPanel = parent as ToolStripPanel; 2369if (ToolStrip.Parent is ToolStripPanel && !ToolStrip.Parent.Visible)
System\Windows\Forms\Design\ToolStripKeyboardHandlingService.cs (4)
787if (selectedObj is ToolStripPanel) 789ToolStripPanel parentToolStripPanel = selectedObj as ToolStripPanel; 1965if (ctl.Site is not null && ctl.Site.Container == container && !(ctl is ToolStripPanel))
System\Windows\Forms\Design\ToolStripPanelDesigner.cs (42)
88public override ToolStripPanel Control => (ToolStripPanel)Component; 476nameof(ToolStripPanel.AutoSizeChanged), 477nameof(ToolStripPanel.BindingContextChanged), 478nameof(ToolStripPanel.CausesValidationChanged), 479nameof(ToolStripPanel.ChangeUICues), 480nameof(ToolStripPanel.DockChanged), 481nameof(ToolStripPanel.DragDrop), 482nameof(ToolStripPanel.DragEnter), 483nameof(ToolStripPanel.DragLeave), 484nameof(ToolStripPanel.DragOver), 485nameof(ToolStripPanel.EnabledChanged), 486nameof(ToolStripPanel.FontChanged), 487nameof(ToolStripPanel.ForeColorChanged), 488nameof(ToolStripPanel.GiveFeedback), 489nameof(ToolStripPanel.ImeModeChanged), 490nameof(ToolStripPanel.KeyDown), 491nameof(ToolStripPanel.KeyPress), 492nameof(ToolStripPanel.KeyUp), 493nameof(ToolStripPanel.LocationChanged), 494nameof(ToolStripPanel.MarginChanged), 495nameof(ToolStripPanel.MouseCaptureChanged), 496nameof(ToolStripPanel.Move), 497nameof(ToolStripPanel.QueryAccessibilityHelp), 498nameof(ToolStripPanel.QueryContinueDrag), 499nameof(ToolStripPanel.RegionChanged), 500nameof(ToolStripPanel.Scroll), 501nameof(ToolStripPanel.Validated), 502nameof(ToolStripPanel.Validating) 533nameof(ToolStripPanel.Anchor), 534nameof(ToolStripPanel.AutoSize), 535nameof(ToolStripPanel.Dock), 536nameof(ToolStripPanel.DockPadding), 537nameof(ToolStripPanel.Height), 538nameof(ToolStripPanel.Location), 539nameof(ToolStripPanel.Name), 540nameof(ToolStripPanel.Orientation), 541nameof(ToolStripPanel.Renderer), 542nameof(ToolStripPanel.RowMargin), 543nameof(ToolStripPanel.Size), 544nameof(ToolStripPanel.Visible), 545nameof(ToolStripPanel.Width),