8 types derived from Panel
System.Windows.Forms (7)
System\Windows\Forms\Controls\DataGridView\DataGridView.DataGridViewEditingPanel.cs (1)
8internal class DataGridViewEditingPanel : Panel
System\Windows\Forms\Controls\TabControl\TabPage.cs (1)
20public partial class TabPage : Panel
System\Windows\Forms\Controls\ToolStrips\ToolStripContentPanel.cs (1)
15public class ToolStripContentPanel : Panel
System\Windows\Forms\Design\ComponentEditorPage.cs (1)
12public abstract class ComponentEditorPage : Panel
System\Windows\Forms\Panels\FlowLayoutPanel.cs (1)
14public class FlowLayoutPanel : Panel, IExtenderProvider
System\Windows\Forms\Panels\SplitterPanel.cs (1)
12public sealed class SplitterPanel : Panel
System\Windows\Forms\Panels\TableLayoutPanel\TableLayoutPanel.cs (1)
22public class TableLayoutPanel : Panel, IExtenderProvider
System.Windows.Forms.Design (1)
System\Windows\Forms\Design\ToolStripEditorManager.cs (1)
120private class ToolStripEditorControl : Panel
7 instantiations of Panel
PresentationUI (4)
MS\Internal\Documents\RMEnrollmentPage1.Designer.cs (2)
38_panel1 = new System.Windows.Forms.Panel(); 47_panel2 = new System.Windows.Forms.Panel();
MS\Internal\Documents\SignatureSummaryDialog.Designer.cs (2)
45_listboxMainPanel = new System.Windows.Forms.Panel(); 46_listboxItemPanel = new System.Windows.Forms.Panel();
System.Windows.Forms (1)
System\Windows\Forms\Design\ComponentEditorForm.cs (1)
25private readonly Panel _pageHost = new();
System.Windows.Forms.Design (2)
System\Windows\Forms\Design\DesignBindingPicker.cs (2)
305_addNewPanel = new Panel(); 331_helpTextPanel = new Panel();
27 references to Panel
PresentationUI (4)
MS\Internal\Documents\RMEnrollmentPage1.Designer.cs (2)
233private System.Windows.Forms.Panel _panel1; 243private System.Windows.Forms.Panel _panel2;
MS\Internal\Documents\SignatureSummaryDialog.Designer.cs (2)
242private System.Windows.Forms.Panel _listboxMainPanel; 244private System.Windows.Forms.Panel _listboxItemPanel;
System.Windows.Forms (17)
System\Windows\Forms\Controls\DataGridView\DataGridView.cs (1)
2235public Panel EditingPanel
System\Windows\Forms\Controls\DataGridView\DataGridView.DataGridViewEditingPanelAccessibleObject.cs (5)
18public DataGridViewEditingPanelAccessibleObject(DataGridView dataGridView, Panel panel) : base(panel) 24=> this.TryGetOwnerAs(out Panel? owner) ? owner.AccessibilityObject.Bounds : default; 31internal override int[] RuntimeId => _runtimeId ??= this.TryGetOwnerAs(out Panel? owner) 68if (this.IsOwnerHandleCreated(out Panel? owner) && owner.CanFocus) 77UIA_PROPERTY_ID.UIA_AccessKeyPropertyId => this.TryGetOwnerAs(out Panel? owner) && owner.AccessibilityObject.KeyboardShortcut is { } shortcut
System\Windows\Forms\Design\ComponentEditorForm.cs (1)
25private readonly Panel _pageHost = new();
System\Windows\Forms\Panels\Panel.cs (4)
12/// Represents a <see cref="Panel"/> control. 24/// Initializes a new instance of the <see cref="Panel"/> class. 242/// Creates a new AccessibleObject for this <see cref="Panel"/> instance. 246/// <see cref="AccessibleObject"/> for this <see cref="Panel"/> instance.
System\Windows\Forms\Panels\Panel.PanelAccessibleObject.cs (4)
14public PanelAccessibleObject(Panel owner) : base(owner) 18internal override Rectangle BoundingRectangle => this.IsOwnerHandleCreated(out Panel? owner) ? 24!this.IsOwnerHandleCreated(out Panel? owner) || index < 0 || index >= owner.Controls.Count 31=> this.IsOwnerHandleCreated(out Panel? owner) ? owner.Controls.Count : -1;
System\Windows\Forms\Panels\SplitterPanel.cs (2)
131get => ((Panel)this).Height; 132set => ((Panel)this).Height = value;
System.Windows.Forms.Design (6)
System\Windows\Forms\Design\DesignBindingPicker.cs (2)
93private readonly Panel _addNewPanel; // Panel containing the "Add Project Data Source" link 95private readonly Panel _helpTextPanel; // Panel containing the help text label
System\Windows\Forms\Design\PanelDesigner.cs (4)
30Panel panel = (Panel)Component; // if the panel is invisible, bail now 53Panel panel = (Panel)Component;