1 write to _actionList
System.Windows.Forms.Design.Tests (1)
System\Windows\Forms\Design\ToolStripActionListTests.cs (1)
31_actionList = new(_designer);
17 references to _actionList
System.Windows.Forms.Design.Tests (17)
System\Windows\Forms\Design\ToolStripActionListTests.cs (17)
55_actionList.Should().NotBeNull(); 56_actionList.Should().BeOfType<ToolStripActionList>(); 57_actionList.Component.Should().Be(_toolStrip); 64_actionList.AutoShow.Should().BeFalse(); 66_actionList.AutoShow = value; 67_actionList.AutoShow.Should().Be(value); 74_actionList.Dock.Should().Be(DockStyle.Top); 76_actionList.Dock = dockStyle; 77_actionList.Dock.Should().Be(dockStyle); 86_actionList.Invoking(a => a.RenderMode = renderMode) 91_actionList.RenderMode = renderMode; 92_actionList.RenderMode.Should().Be(renderMode); 100_actionList.GripStyle.Should().Be(ToolStripGripStyle.Visible); 102_actionList.GripStyle = gripStyle; 103_actionList.GripStyle.Should().Be(gripStyle); 156_actionList.TestAccessor().Dynamic._toolStrip = statusStrip; 165DesignerActionItemCollection items = _actionList.GetSortedActionItems();