1 instantiation of DesignerActionItemCollection
DesignSurface (1)
CustomControls\CustomButtonDesignerActionList.cs (1)
22_actonListItems = new DesignerActionItemCollection();
67 references to DesignerActionItemCollection
DesignSurface (2)
CustomControls\CustomButtonDesignerActionList.cs (2)
11private DesignerActionItemCollection _actonListItems; 20public override DesignerActionItemCollection GetSortedActionItems()
System.Design (1)
artifacts\obj\System.Design.Facade\Release\net9.0\System.Design.Forwards.cs (1)
13[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.ComponentModel.Design.DesignerActionItemCollection))]
System.Windows.Forms.Design (43)
System\ComponentModel\Design\DesignerActionItemCollectionExtensions.cs (1)
8public static int Add(this DesignerActionItemCollection collection, object value) => value is DesignerActionItem item
System\ComponentModel\Design\DesignerActionList.cs (2)
24public virtual DesignerActionItemCollection GetSortedActionItems() 64DesignerActionItemCollection returnValue = [.. items.Values];
System\ComponentModel\Design\DesignerActionService.cs (2)
227DesignerActionItemCollection? collection = actionList?.GetSortedActionItems(); 277DesignerActionItemCollection? collection = actionList?.GetSortedActionItems();
System\ComponentModel\Design\MenuCommandService.cs (1)
228DesignerActionItemCollection dai = list.GetSortedActionItems();
System\ComponentModel\Design\ToolStripContainerActionList.cs (2)
299public override DesignerActionItemCollection GetSortedActionItems() 301DesignerActionItemCollection items =
System\Windows\Forms\Design\ContextMenuStripActionList.cs (2)
95public override DesignerActionItemCollection GetSortedActionItems() 97DesignerActionItemCollection items =
System\Windows\Forms\Design\ControlDesigner.DockingActionList.cs (2)
45public override DesignerActionItemCollection GetSortedActionItems() 47DesignerActionItemCollection items = [];
System\Windows\Forms\Design\DataGridViewDesigner.cs (6)
818public override DesignerActionItemCollection GetSortedActionItems() 820DesignerActionItemCollection items = []; 872public override DesignerActionItemCollection GetSortedActionItems() 874DesignerActionItemCollection items = 903public override DesignerActionItemCollection GetSortedActionItems() 905DesignerActionItemCollection items =
System\Windows\Forms\Design\DesignerActionVerbList.cs (2)
18public override DesignerActionItemCollection GetSortedActionItems() 20DesignerActionItemCollection items = [];
System\Windows\Forms\Design\ImageListActionList.cs (2)
46public override DesignerActionItemCollection GetSortedActionItems() 48DesignerActionItemCollection items =
System\Windows\Forms\Design\ListControlUnboundActionList.cs (2)
23public override DesignerActionItemCollection GetSortedActionItems() 25DesignerActionItemCollection returnItems =
System\Windows\Forms\Design\ListViewActionList.cs (2)
72public override DesignerActionItemCollection GetSortedActionItems() 74DesignerActionItemCollection items =
System\Windows\Forms\Design\MaskedTextBoxDesignerActionList.cs (2)
58public override DesignerActionItemCollection GetSortedActionItems() 60DesignerActionItemCollection items = [new DesignerActionMethodItem(this, "SetMask", SR.MaskedTextBoxDesignerVerbsSetMaskDesc)];
System\Windows\Forms\Design\NotifyIconDesignerActionList.cs (2)
21public override DesignerActionItemCollection GetSortedActionItems() 23DesignerActionItemCollection items =
System\Windows\Forms\Design\PictureBoxActionList.cs (2)
38public override DesignerActionItemCollection GetSortedActionItems() 40DesignerActionItemCollection items =
System\Windows\Forms\Design\RichTextBoxActionList.cs (2)
23public override DesignerActionItemCollection GetSortedActionItems() 25DesignerActionItemCollection items =
System\Windows\Forms\Design\SplitContainerDesigner.OrientationActionList.cs (1)
60public override DesignerActionItemCollection GetSortedActionItems() =>
System\Windows\Forms\Design\TableLayoutPanelDesigner.cs (2)
394public override DesignerActionItemCollection GetSortedActionItems() 396DesignerActionItemCollection items =
System\Windows\Forms\Design\TextBoxActionList.cs (2)
31public override DesignerActionItemCollection GetSortedActionItems() 33DesignerActionItemCollection items =
System\Windows\Forms\Design\ToolStripActionList.cs (2)
134public override DesignerActionItemCollection GetSortedActionItems() 136DesignerActionItemCollection items = [];
System\Windows\Forms\Design\TreeViewActionList.cs (2)
38public override DesignerActionItemCollection GetSortedActionItems() 40DesignerActionItemCollection items =
System.Windows.Forms.Design.Tests (21)
System\ComponentModel\Design\DesignerActionItemCollectionTests.cs (13)
11DesignerActionItemCollection collection = []; 18DesignerActionItemCollection collection = []; 37DesignerActionItemCollection collection = []; 44DesignerActionItemCollection collection = []; 63DesignerActionItemCollection collection = []; 70DesignerActionItemCollection collection = []; 84DesignerActionItemCollection collection = []; 91DesignerActionItemCollection collection = []; 109DesignerActionItemCollection collection = []; 118DesignerActionItemCollection collection = []; 130DesignerActionItemCollection collection = []; 141DesignerActionItemCollection collection = []; 152DesignerActionItemCollection collection = [];
System\ComponentModel\Design\DesignerActionListTests.cs (2)
69DesignerActionItemCollection items = list.GetSortedActionItems(); 125DesignerActionItemCollection items = list.GetSortedActionItems();
System\ComponentModel\Design\DesignerActionServiceTests.cs (3)
503DesignerActionItemCollection verbActionActionItems = actionList.GetSortedActionItems(); 600DesignerActionItemCollection verbActionActionItems = actionList.GetSortedActionItems(); 1077public override DesignerActionItemCollection GetSortedActionItems() => null;
System\Windows\Forms\Design\ImageListActionListTests.cs (2)
69DesignerActionItemCollection items = _actionList.GetSortedActionItems(); 71items.Should().BeOfType<DesignerActionItemCollection>();
System\Windows\Forms\Design\ListViewActionListTests.cs (1)
65var items = _actionList.GetSortedActionItems();