2 writes to Height
System.Windows.Forms.Tests (2)
System\Windows\Forms\SplitterPanelTests.cs (2)
462
Assert.Throws<NotSupportedException>(() => control.
Height
= value);
481
Assert.Throws<NotSupportedException>(() => control.
Height
= value);
16 references to Height
System.Windows.Forms (6)
System\Windows\Forms\Layout\Containers\SplitContainer.cs (6)
1517
size = Math.Max(Panel1.
Height
+ delta, _borderSize);
1601
Panel1.Size = new Size(0, Panel1.
Height
);
1602
Panel2.Size = new Size(0, Panel2.
Height
);
1686
_splitterDistance = Math.Max(Height - Panel2.
Height
- SplitterWidthInternal, Panel1MinSize);
2236
_ratioHeight = (Height / (double)(Panel1.
Height
) > 0) ? Height / (double)(Panel1.
Height
) : _ratioHeight;
System.Windows.Forms.Tests (9)
System\Windows\Forms\SplitterPanelTests.cs (9)
69
Assert.Equal(100, control.
Height
);
472
Assert.Equal(100, control.
Height
);
491
Assert.Equal(100, control.
Height
);
550
Assert.Equal(100, control.
Height
);
572
Assert.Equal(100, control.
Height
);
837
Assert.Equal(value.Height, control.
Height
);
856
Assert.Equal(value.Height, control.
Height
);
1194
Assert.Equal(100, control.
Height
);
1213
Assert.Equal(100, control.
Height
);
System.Windows.Forms.UI.IntegrationTests (1)
Dpi\SplitContainerTests.cs (1)
67
Assert.Equal(splitContainer.SplitterDistance, splitContainer.Panel1.
Height
);