4 writes to IntegralHeight
System.Windows.Forms.Design (1)
System\Windows\Forms\Design\ListBoxDesigner.cs (1)
105
IntegralHeight
= listBox.IntegralHeight;
System.Windows.Forms.Design.Tests (3)
System\Windows\Forms\Design\ListBoxDesignerTests.cs (3)
18
designer.
IntegralHeight
= value;
46
designer.
IntegralHeight
= integralHeight;
93
designer.
IntegralHeight
= true;
10 references to IntegralHeight
System.Windows.Forms.Design (5)
System\Windows\Forms\Design\ListBoxDesigner.cs (5)
20
get => (bool)ShadowProperties[nameof(
IntegralHeight
)]!;
23
ShadowProperties[nameof(
IntegralHeight
)] = value;
58
listBox.IntegralHeight = (bool)ShadowProperties[nameof(
IntegralHeight
)]!;
65
if (properties[nameof(
IntegralHeight
)] is PropertyDescriptor integralHeightProp)
67
properties[nameof(
IntegralHeight
)] = TypeDescriptor.CreateProperty(typeof(ListBoxDesigner), integralHeightProp, []);
System.Windows.Forms.Design.Tests (5)
System\Windows\Forms\Design\ListBoxDesignerTests.cs (5)
15
designer.
IntegralHeight
.Should().BeTrue();
20
designer.
IntegralHeight
.Should().Be(value);
41
designer.
IntegralHeight
.Should().BeTrue();
49
designer.
IntegralHeight
.Should().Be(integralHeight);
114
listBox.IntegralHeight.Should().Be(designer.
IntegralHeight
);