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