1 write to _actionList
System.Windows.Forms.Design.Tests (1)
System\Windows\Forms\Design\ImageListActionListTests.cs (1)
21
_actionList
= new(_imageListDesigner);
10 references to _actionList
System.Windows.Forms.Design.Tests (10)
System\Windows\Forms\Design\ImageListActionListTests.cs (10)
33
_actionList
.Should().NotBeNull();
34
_actionList
.Should().BeOfType<ImageListActionList>();
35
_actionList
.Component.Should().Be(_imageListDesigner.Component);
41
_actionList
.ColorDepth.Should().Be(ColorDepth.Depth32Bit);
47
_actionList
.ColorDepth = ColorDepth.Depth16Bit;
48
_actionList
.ColorDepth.Should().Be(ColorDepth.Depth16Bit);
55
_actionList
.ImageSize.Should().Be(size);
62
_actionList
.ImageSize = size;
63
_actionList
.ImageSize.Should().Be(size);
69
DesignerActionItemCollection items =
_actionList
.GetSortedActionItems();