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