1 instantiation of TableLayoutPanelDesigner
System.Windows.Forms.Design.Tests (1)
System\Windows\Forms\Design\TableLayoutPanelDesignerTests.cs (1)
20_designer = new();
16 references to TableLayoutPanelDesigner
System.Design (1)
System.Design.Forwards.cs (1)
74[assembly: TypeForwardedTo(typeof(System.Windows.Forms.Design.TableLayoutPanelDesigner))]
System.Windows.Forms.Design (8)
System\Windows\Forms\Design\Behavior\TableLayoutPanelBehavior.cs (2)
14private readonly TableLayoutPanelDesigner _designer; // pointer back to our designer. 29internal TableLayoutPanelBehavior(TableLayoutPanel panel, TableLayoutPanelDesigner designer, IServiceProvider serviceProvider)
System\Windows\Forms\Design\StyleEditorForm.cs (2)
20private readonly TableLayoutPanelDesigner _tableLayoutPanelDesigner; 105_tableLayoutPanelDesigner = host.GetDesigner(_tableLayoutPanel) as TableLayoutPanelDesigner;
System\Windows\Forms\Design\TableLayoutPanelDesigner.cs (4)
387private readonly TableLayoutPanelDesigner _owner; 389public TableLayouPanelRowColumnActionList(TableLayoutPanelDesigner owner) : base(owner.Component) 2104properties[shadowProps[i]] = TypeDescriptor.CreateProperty(typeof(TableLayoutPanelDesigner), prop, attribs); 2117properties["Controls"] = TypeDescriptor.CreateProperty(typeof(TableLayoutPanelDesigner), "Controls", typeof(DesignerTableLayoutControlCollection), attrs);
System.Windows.Forms.Design.Tests (7)
System\Windows\Forms\Design\TableLayoutPanelDesignerTests.cs (7)
14private readonly TableLayoutPanelDesigner _designer; 16private readonly TableLayoutPanelDesigner.DesignerTableLayoutControlCollection _collection; 127Mock<TableLayoutPanelDesigner> designerMock = new() { CallBase = true }; 137TableLayoutPanelDesigner designer = designerMock.Object; 239TableLayoutPanelDesigner.DesignerTableLayoutControlCollection collection1 = new(_tableLayoutPanel); 240TableLayoutPanelDesigner.DesignerTableLayoutControlCollection collection2 = new(_tableLayoutPanel); 242TableLayoutPanelDesigner.DesignerTableLayoutControlCollection collection3 = new(anotherTableLayoutPanel);