4 instantiations of ToolStripPanelRowCollection
System.Windows.Forms (1)
System\Windows\Forms\Controls\ToolStrips\ToolStripPanel.cs (1)
381private ToolStripPanelRowCollection CreateToolStripPanelRowCollection() => new(this);
System.Windows.Forms.Tests (3)
System\Windows\Forms\ToolStripPanel.ToolStripPanelRowCollectionTests.cs (3)
18_toolStripPanelRowCollection = new(_toolStripPanel); 48ToolStripPanelRowCollection toolStripPanelRowCollection = new(_toolStripPanel, toolStripPanelRowArray); 114_toolStripPanelRowCollection.AddRange(new ToolStripPanelRowCollection(_toolStripPanel) { rows[0], rows[1] });
10 references to ToolStripPanelRowCollection
System.Windows.Forms (5)
System\Windows\Forms\Controls\ToolStrips\ToolStripPanel.cs (4)
270internal ToolStripPanelRowCollection RowsInternal 274if (!Properties.TryGetValue(s_propToolStripPanelRowCollection, out ToolStripPanelRowCollection? rowCollection)) 381private ToolStripPanelRowCollection CreateToolStripPanelRowCollection() => new(this); 1104static object GetRow(ISupportToolStripPanel draggedToolStrip, ToolStripPanelRowCollection rows)
System\Windows\Forms\Controls\ToolStrips\ToolStripPanel.ToolStripPanelRowCollection.cs (1)
68public void AddRange(ToolStripPanelRowCollection value)
System.Windows.Forms.Tests (5)
System\Windows\Forms\ToolStripPanel.ToolStripPanelRowCollectionTests.cs (5)
13private readonly ToolStripPanelRowCollection _toolStripPanelRowCollection; 48ToolStripPanelRowCollection toolStripPanelRowCollection = new(_toolStripPanel, toolStripPanelRowArray); 129Action action = () => _toolStripPanelRowCollection.AddRange(value: (ToolStripPanelRowCollection)null!); 315private ToolStripPanelRow AddRowToCollection(ToolStripPanelRowCollection collection, ToolStripPanel panel) 322private ToolStripPanelRow[] AddRowsToCollection(ToolStripPanelRowCollection collection, ToolStripPanel panel, int count)