1 write to _actionList
System.Windows.Forms.Design.Tests (1)
System\Windows\Forms\Design\ImageListActionListTests.cs (1)
19
_actionList
= new(_imageListDesigner);
10 references to _actionList
System.Windows.Forms.Design.Tests (10)
System\Windows\Forms\Design\ImageListActionListTests.cs (10)
31
_actionList
.Should().NotBeNull();
32
_actionList
.Should().BeOfType<ImageListActionList>();
33
_actionList
.Component.Should().Be(_imageListDesigner.Component);
39
_actionList
.ColorDepth.Should().Be(ColorDepth.Depth32Bit);
45
_actionList
.ColorDepth = ColorDepth.Depth16Bit;
46
_actionList
.ColorDepth.Should().Be(ColorDepth.Depth16Bit);
53
_actionList
.ImageSize.Should().Be(size);
60
_actionList
.ImageSize = size;
61
_actionList
.ImageSize.Should().Be(size);
67
DesignerActionItemCollection items =
_actionList
.GetSortedActionItems();