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)
16_toolStripPanelRowCollection = new(_toolStripPanel); 46ToolStripPanelRowCollection toolStripPanelRowCollection = new(_toolStripPanel, toolStripPanelRowArray); 112_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); 1096static 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)
11private readonly ToolStripPanelRowCollection _toolStripPanelRowCollection; 46ToolStripPanelRowCollection toolStripPanelRowCollection = new(_toolStripPanel, toolStripPanelRowArray); 127Action action = () => _toolStripPanelRowCollection.AddRange(value: (ToolStripPanelRowCollection)null!); 313private ToolStripPanelRow AddRowToCollection(ToolStripPanelRowCollection collection, ToolStripPanel panel) 320private ToolStripPanelRow[] AddRowsToCollection(ToolStripPanelRowCollection collection, ToolStripPanel panel, int count)