17 instantiations of DesignerActionListCollection
System.Windows.Forms.Design (17)
System\ComponentModel\Design\DesignerActionService.cs (1)
86Add(comp, new DesignerActionListCollection([actionList]));
System\Windows\Forms\Design\Behavior\DesignerActionBehavior.cs (1)
61DesignerActionListCollection lists = new();
System\Windows\Forms\Design\ComboBoxDesigner.cs (1)
128_actionLists = new DesignerActionListCollection();
System\Windows\Forms\Design\DataGridViewDesigner.cs (1)
195_actionLists = new DesignerActionListCollection();
System\Windows\Forms\Design\ImageListDesigner.cs (1)
137_actionLists ??= new DesignerActionListCollection
System\Windows\Forms\Design\ListBoxDesigner.cs (1)
197_actionLists = new DesignerActionListCollection();
System\Windows\Forms\Design\ListViewDesigner.cs (1)
178_actionLists = new DesignerActionListCollection();
System\Windows\Forms\Design\MaskedTextBoxDesigner.cs (1)
32_actions = new DesignerActionListCollection();
System\Windows\Forms\Design\NotifyIconDesigner.cs (1)
24_actionLists ??= new DesignerActionListCollection
System\Windows\Forms\Design\PictureBoxDesigner.cs (1)
111_actionLists = new DesignerActionListCollection();
System\Windows\Forms\Design\RichTextBoxDesigner.cs (1)
44_actionLists = new DesignerActionListCollection();
System\Windows\Forms\Design\SplitContainerDesigner.cs (1)
43DesignerActionListCollection designerActionListCollection = new();
System\Windows\Forms\Design\TableLayoutPanelDesigner.cs (1)
374_actionLists = new DesignerActionListCollection();
System\Windows\Forms\Design\TextBoxDesigner.cs (1)
25_actionLists = new DesignerActionListCollection();
System\Windows\Forms\Design\ToolStripDesigner.cs (1)
69DesignerActionListCollection actionLists = new();
System\Windows\Forms\Design\ToolStripDropDownDesigner.cs (1)
54DesignerActionListCollection actionLists = new();
System\Windows\Forms\Design\TreeViewDesigner.cs (1)
72public override DesignerActionListCollection ActionLists => _actionLists ??= new DesignerActionListCollection
63 references to DesignerActionListCollection
System.Design (1)
src\winforms\artifacts\obj\System.Design.Facade\Release\net11.0\System.Design.Forwards.cs (1)
15[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.ComponentModel.Design.DesignerActionListCollection))]
System.Windows.Forms.Design (62)
System\ComponentModel\Design\ComponentDesigner.cs (2)
18private DesignerActionListCollection? _actionLists; 28public virtual DesignerActionListCollection ActionLists => _actionLists ??= [];
System\ComponentModel\Design\DesignerActionListCollection.cs (1)
37public void AddRange(DesignerActionListCollection value)
System\ComponentModel\Design\DesignerActionListsChangedEventArgs.cs (2)
24public DesignerActionListsChangedEventArgs(object? relatedObject, DesignerActionListsChangedType changeType, DesignerActionListCollection? actionLists) 47public DesignerActionListCollection? ActionLists { get; }
System\ComponentModel\Design\DesignerActionListsChangedType.cs (1)
8/// <see cref="DesignerActionListCollection">designer action lists collection.</see>
System\ComponentModel\Design\DesignerActionPanel.cs (4)
546private void ProcessLists(DesignerActionListCollection? lists, Dictionary<string, Dictionary<DesignerActionList, List<LineInfo>>> categories) 606DesignerActionListCollection? relatedLists = null; 796public void UpdateTasks(DesignerActionListCollection actionLists, DesignerActionListCollection serviceActionLists, string title, string? subtitle)
System\ComponentModel\Design\DesignerActionService.cs (12)
17private readonly Dictionary<IComponent, DesignerActionListCollection> _designerActionLists; // this is how we store 'em. Syntax: key = object, value = DesignerActionListCollection 63public void Add(IComponent comp, DesignerActionListCollection designerActionListCollection) 68if (_designerActionLists.TryGetValue(comp, out DesignerActionListCollection? collection)) 143public DesignerActionListCollection GetComponentActions(IComponent component) 148public virtual DesignerActionListCollection GetComponentActions(IComponent component, ComponentActionsType type) 152DesignerActionListCollection result = []; 170protected virtual void GetComponentDesignerActions(IComponent component, DesignerActionListCollection actionLists) 178DesignerActionListCollection? pullCollection = designerCommandSet.ActionLists; 264protected virtual void GetComponentServiceActions(IComponent component, DesignerActionListCollection actionLists) 269if (_designerActionLists.TryGetValue(component, out DesignerActionListCollection? pushCollection)) 327if (_designerActionLists.TryGetValue(comp, out DesignerActionListCollection? dacl) && dacl.Contains(actionList)) 344if (!_designerActionLists.TryGetValue(comp, out DesignerActionListCollection? actionLists) || !actionLists.Contains(actionList))
System\ComponentModel\Design\DesignerActionUI.cs (1)
168internal DesignerActionGlyph? GetDesignerActionGlyph(IComponent comp, DesignerActionListCollection? dalColl)
System\ComponentModel\Design\DesignerActionUIService.cs (1)
87DesignerActionListCollection coll = _designerActionService.GetComponentActions(component);
System\ComponentModel\Design\DesignerCommandSet.cs (2)
17public DesignerActionListCollection? ActionLists => (DesignerActionListCollection?)GetCommands(ActionListsCommand);
System\ComponentModel\Design\MenuCommandService.cs (1)
220DesignerActionListCollection actionLists = daSvc.GetComponentActions(selectedComponent);
System\Windows\Forms\Design\Behavior\DesignerActionBehavior.cs (3)
26internal DesignerActionBehavior(IServiceProvider serviceProvider, IComponent relatedComponent, DesignerActionListCollection actionLists, DesignerActionUI parentUI) 38internal DesignerActionListCollection ActionLists { get; set; } 61DesignerActionListCollection lists = new();
System\Windows\Forms\Design\ComboBoxDesigner.cs (2)
18private DesignerActionListCollection? _actionLists; 122public override DesignerActionListCollection ActionLists
System\Windows\Forms\Design\DataGridViewDesigner.cs (2)
20private DesignerActionListCollection? _actionLists; 179public override DesignerActionListCollection ActionLists
System\Windows\Forms\Design\ImageListDesigner.cs (2)
19private DesignerActionListCollection? _actionLists; 133public override DesignerActionListCollection ActionLists
System\Windows\Forms\Design\ListBoxDesigner.cs (2)
16private DesignerActionListCollection? _actionLists; 191public override DesignerActionListCollection ActionLists
System\Windows\Forms\Design\ListViewDesigner.cs (2)
19private DesignerActionListCollection _actionLists; 172public override DesignerActionListCollection ActionLists
System\Windows\Forms\Design\MaskedTextBoxDesigner.cs (2)
17private DesignerActionListCollection? _actions; 26public override DesignerActionListCollection ActionLists
System\Windows\Forms\Design\NotifyIconDesigner.cs (2)
11private DesignerActionListCollection? _actionLists; 20public override DesignerActionListCollection ActionLists
System\Windows\Forms\Design\PictureBoxDesigner.cs (2)
17private DesignerActionListCollection? _actionLists; 105public override DesignerActionListCollection ActionLists
System\Windows\Forms\Design\RichTextBoxDesigner.cs (2)
16private DesignerActionListCollection? _actionLists; 38public override DesignerActionListCollection ActionLists
System\Windows\Forms\Design\SplitContainerDesigner.cs (2)
39public override DesignerActionListCollection ActionLists 43DesignerActionListCollection designerActionListCollection = new();
System\Windows\Forms\Design\TableLayoutPanelDesigner.cs (2)
33private DesignerActionListCollection _actionLists; // action list for the Smart Tag 292public override DesignerActionListCollection ActionLists
System\Windows\Forms\Design\TextBoxDesigner.cs (2)
17private DesignerActionListCollection? _actionLists; 19public override DesignerActionListCollection ActionLists
System\Windows\Forms\Design\ToolStripContainerDesigner.cs (2)
93public override DesignerActionListCollection ActionLists 97DesignerActionListCollection actions = [];
System\Windows\Forms\Design\ToolStripDesigner.cs (2)
65public override DesignerActionListCollection ActionLists 69DesignerActionListCollection actionLists = new();
System\Windows\Forms\Design\ToolStripDropDownDesigner.cs (2)
50public override DesignerActionListCollection ActionLists 54DesignerActionListCollection actionLists = new();
System\Windows\Forms\Design\TreeViewDesigner.cs (2)
18private DesignerActionListCollection? _actionLists; 72public override DesignerActionListCollection ActionLists => _actionLists ??= new DesignerActionListCollection