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