1 write to _actionList
System.Windows.Forms.Design.Tests (1)
System\Windows\Forms\Design\ToolStripActionListTests.cs (1)
29_actionList = new(_designer);
17 references to _actionList
System.Windows.Forms.Design.Tests (17)
System\Windows\Forms\Design\ToolStripActionListTests.cs (17)
53_actionList.Should().NotBeNull(); 54_actionList.Should().BeOfType<ToolStripActionList>(); 55_actionList.Component.Should().Be(_toolStrip); 62_actionList.AutoShow.Should().BeFalse(); 64_actionList.AutoShow = value; 65_actionList.AutoShow.Should().Be(value); 72_actionList.Dock.Should().Be(DockStyle.Top); 74_actionList.Dock = dockStyle; 75_actionList.Dock.Should().Be(dockStyle); 84_actionList.Invoking(a => a.RenderMode = renderMode) 89_actionList.RenderMode = renderMode; 90_actionList.RenderMode.Should().Be(renderMode); 98_actionList.GripStyle.Should().Be(ToolStripGripStyle.Visible); 100_actionList.GripStyle = gripStyle; 101_actionList.GripStyle.Should().Be(gripStyle); 154_actionList.TestAccessor().Dynamic._toolStrip = statusStrip; 163DesignerActionItemCollection items = _actionList.GetSortedActionItems();