5 instantiations of ToolStripItemCollection
System.Windows.Forms (5)
System\Windows\Forms\Controls\ToolStrips\ToolStrip.cs (3)
713_displayedItems ??= new ToolStripItemCollection(this, false); 1040_toolStripItemCollection ??= new ToolStripItemCollection(this, true); 1367_overflowItems ??= new ToolStripItemCollection(this, false);
System\Windows\Forms\Controls\ToolStrips\ToolStripOverflow.cs (2)
30return new ToolStripItemCollection(owner: null, itemsCollection: false); 38return new ToolStripItemCollection(owner: null, itemsCollection: false, isReadOnly: true);
33 references to ToolStripItemCollection
System.Windows.Forms (25)
System\Windows\Forms\Controls\ToolStrips\MergeHistoryItem.cs (2)
21public ToolStripItemCollection? PreviousIndexCollection { get; set; } 23public ToolStripItemCollection? IndexCollection { get; set; }
System\Windows\Forms\Controls\ToolStrips\ToolStrip.cs (8)
29private ToolStripItemCollection? _toolStripItemCollection; 32private ToolStripItemCollection? _displayedItems; 33private ToolStripItemCollection? _overflowItems; 709protected internal virtual ToolStripItemCollection DisplayedItems 1036public virtual ToolStripItemCollection Items 1363internal ToolStripItemCollection OverflowItems 3935internal virtual void ReleaseToolStripItemsProviders(ToolStripItemCollection items) 3942ToolStripItemCollection dropDownMenuItems = dropDownItem.DropDownItems;
System\Windows\Forms\Controls\ToolStrips\ToolStrip.ToolStripAccessibleObject.cs (3)
156ToolStripItemCollection items = getOverflowItem 206AccessibleObject? GetFollowingChildFragment(int index, ToolStripItemCollection items, NavigateDirection direction) 290ToolStripItemCollection items;
System\Windows\Forms\Controls\ToolStrips\ToolStripDropDownItem.cs (1)
244public ToolStripItemCollection DropDownItems
System\Windows\Forms\Controls\ToolStrips\ToolStripDropDownMenu.cs (1)
582internal override void ReleaseToolStripItemsProviders(ToolStripItemCollection items)
System\Windows\Forms\Controls\ToolStrips\ToolStripItem.cs (1)
3551ToolStripItemCollection items = _parent.DisplayedItems;
System\Windows\Forms\Controls\ToolStrips\ToolStripItemCollection.cs (2)
135public void AddRange(ToolStripItemCollection toolStripItems) 255private static void FindInternal(string key, bool searchAllChildren, ToolStripItemCollection itemsToLookIn, List<ToolStripItem> foundItems)
System\Windows\Forms\Controls\ToolStrips\ToolStripManager.cs (2)
1015private static ToolStripItem? FindMatch(ToolStripItem source, ToolStripItemCollection destinationItems) 1129private static void MergeRecursive(ToolStripItem source, ToolStripItemCollection destinationItems, Stack<MergeHistoryItem> history)
System\Windows\Forms\Controls\ToolStrips\ToolStripMenuItem.ToolStripMenuItemAccessibleObject.cs (2)
63ToolStripItemCollection? displayedItems = _owningToolStripMenuItem.ParentInternal?.DisplayedItems; 98ToolStripItemCollection? displayedItems = _owningToolStripMenuItem.ParentInternal?.DisplayedItems;
System\Windows\Forms\Controls\ToolStrips\ToolStripOverflow.cs (3)
20protected internal override ToolStripItemCollection DisplayedItems 26ToolStripItemCollection items = ParentToolStrip.OverflowItems; 34public override ToolStripItemCollection Items
System.Windows.Forms.Design (8)
System\Windows\Forms\Design\BindingNavigatorDesigner.cs (1)
117private void SiteItems(IDesignerHost? host, ToolStripItemCollection items)
System\Windows\Forms\Design\ToolStripCollectionEditor.cs (1)
11public ToolStripCollectionEditor() : base(typeof(ToolStripItemCollection))
System\Windows\Forms\Design\ToolStripCollectionEditor.ToolStripItemEditorForm.cs (3)
46private ToolStripItemCollection _targetToolStripCollection; 119internal ToolStripItemCollection Collection 426Collection = (ToolStripItemCollection)EditValue;
System\Windows\Forms\Design\ToolStripKeyboardHandlingService.cs (3)
1805ToolStripItemCollection collection = wb.Items; 1948ToolStripItemCollection collection = parent.Items; 1953ToolStripItemCollection collection = parent.Items;