21 overrides of GetSortedActionItems
DesignSurface (1)
CustomControls\CustomButtonDesignerActionList.cs (1)
20public override DesignerActionItemCollection GetSortedActionItems()
System.Windows.Forms.Design (19)
System\ComponentModel\Design\ToolStripContainerActionList.cs (1)
299public override DesignerActionItemCollection GetSortedActionItems()
System\Windows\Forms\Design\ContextMenuStripActionList.cs (1)
95public override DesignerActionItemCollection GetSortedActionItems()
System\Windows\Forms\Design\ControlDesigner.DockingActionList.cs (1)
45public override DesignerActionItemCollection GetSortedActionItems()
System\Windows\Forms\Design\DataGridViewDesigner.cs (3)
818public override DesignerActionItemCollection GetSortedActionItems() 872public override DesignerActionItemCollection GetSortedActionItems() 903public override DesignerActionItemCollection GetSortedActionItems()
System\Windows\Forms\Design\DesignerActionVerbList.cs (1)
18public override DesignerActionItemCollection GetSortedActionItems()
System\Windows\Forms\Design\ImageListActionList.cs (1)
46public override DesignerActionItemCollection GetSortedActionItems()
System\Windows\Forms\Design\ListControlUnboundActionList.cs (1)
23public override DesignerActionItemCollection GetSortedActionItems()
System\Windows\Forms\Design\ListViewActionList.cs (1)
72public override DesignerActionItemCollection GetSortedActionItems()
System\Windows\Forms\Design\MaskedTextBoxDesignerActionList.cs (1)
58public override DesignerActionItemCollection GetSortedActionItems()
System\Windows\Forms\Design\NotifyIconDesignerActionList.cs (1)
21public override DesignerActionItemCollection GetSortedActionItems()
System\Windows\Forms\Design\PictureBoxActionList.cs (1)
38public override DesignerActionItemCollection GetSortedActionItems()
System\Windows\Forms\Design\RichTextBoxActionList.cs (1)
23public override DesignerActionItemCollection GetSortedActionItems()
System\Windows\Forms\Design\SplitContainerDesigner.OrientationActionList.cs (1)
60public override DesignerActionItemCollection GetSortedActionItems() =>
System\Windows\Forms\Design\TableLayoutPanelDesigner.cs (1)
394public override DesignerActionItemCollection GetSortedActionItems()
System\Windows\Forms\Design\TextBoxActionList.cs (1)
31public override DesignerActionItemCollection GetSortedActionItems()
System\Windows\Forms\Design\ToolStripActionList.cs (1)
134public override DesignerActionItemCollection GetSortedActionItems()
System\Windows\Forms\Design\TreeViewActionList.cs (1)
38public override DesignerActionItemCollection GetSortedActionItems()
System.Windows.Forms.Design.Tests (1)
System\ComponentModel\Design\DesignerActionServiceTests.cs (1)
1077public override DesignerActionItemCollection GetSortedActionItems() => null;
18 references to GetSortedActionItems
System.Windows.Forms.Design (5)
System\ComponentModel\Design\DesignerActionPanel.cs (2)
560IEnumerable items = list.GetSortedActionItems(); 636IEnumerable items = relatedList.GetSortedActionItems();
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.Windows.Forms.Design.Tests (13)
System\ComponentModel\Design\DesignerActionListTests.cs (2)
69DesignerActionItemCollection items = list.GetSortedActionItems(); 125DesignerActionItemCollection items = list.GetSortedActionItems();
System\ComponentModel\Design\DesignerActionServiceTests.cs (8)
503DesignerActionItemCollection verbActionActionItems = actionList.GetSortedActionItems(); 544Assert.Single(actionList.GetSortedActionItems()); 548Assert.Empty(actionList.GetSortedActionItems()); 553Assert.Empty(actionList.GetSortedActionItems()); 558Assert.Empty(actionList.GetSortedActionItems()); 562Assert.Single(actionList.GetSortedActionItems()); 600DesignerActionItemCollection verbActionActionItems = actionList.GetSortedActionItems(); 601DesignerActionMethodItem actionItem = Assert.IsAssignableFrom<DesignerActionMethodItem>(Assert.Single(actionList.GetSortedActionItems()));
System\Windows\Forms\Design\ImageListActionListTests.cs (1)
69DesignerActionItemCollection items = _actionList.GetSortedActionItems();
System\Windows\Forms\Design\ListViewActionListTests.cs (1)
65var items = _actionList.GetSortedActionItems();
System\Windows\Forms\Design\RichTextBoxActionListTests.cs (1)
25actionList.GetSortedActionItems().Count.Should().Be(1);