6 implementations of DisplayRectangle
System.Windows.Forms (6)
winforms\Managed\System\WinForms\ArrangedElement.cs (1)
62public virtual Rectangle DisplayRectangle {
winforms\Managed\System\WinForms\Control.cs (1)
2282public virtual Rectangle DisplayRectangle {
winforms\Managed\System\WinForms\ScrollableControl.cs (1)
282Rectangle IArrangedElement.DisplayRectangle {
winforms\Managed\System\WinForms\ToolStrip.cs (1)
846public override Rectangle DisplayRectangle {
winforms\Managed\System\WinForms\ToolStripItem.cs (1)
1153Rectangle IArrangedElement.DisplayRectangle {
winforms\Managed\System\WinForms\ToolStripPanelRow.cs (1)
639Rectangle IArrangedElement.DisplayRectangle {
11 references to DisplayRectangle
System.Windows.Forms (11)
winforms\Managed\System\WinForms\Layout\DockAndAnchorLayout.cs (5)
231Debug.WriteLineIf(CompModSwitches.RichLayout.TraceInfo, "\t\tdisplayRect: " + container.DisplayRectangle.ToString()); 233Rectangle displayRectangle = container.DisplayRectangle; 259Rectangle remainingBounds = measureOnly ? Rectangle.Empty : container.DisplayRectangle; 568Rectangle parentDisplayRect = element.Container.DisplayRectangle; 734Rectangle displayRectangle = container.DisplayRectangle;
winforms\Managed\System\WinForms\Layout\FlowLayout.cs (1)
41CommonProperties.SetLayoutBounds(container, xLayout(container, container.DisplayRectangle, /* measureOnly = */ false));
winforms\Managed\System\WinForms\Layout\TableLayout.cs (3)
193Size containerSize = container.DisplayRectangle.Size - new Size(cellBorderWidth, cellBorderWidth); 201RectangleF displayRect = (RectangleF)container.DisplayRectangle; 252Size containerSize = container.DisplayRectangle.Size - new Size(cellBorderWidth * 2, cellBorderWidth * 2);
winforms\Managed\System\WinForms\ToolStripPanelRow.cs (2)
937Rectangle displayRect = ((IArrangedElement)Row).DisplayRectangle; 1448Rectangle displayRect = ((IArrangedElement)Row).DisplayRectangle;