Implemented interface member:
property
Bounds
System.Windows.Forms.Layout.IArrangedElement.Bounds
19 references to Bounds
System.Windows.Forms (19)
System\Windows\Forms\Controls\ToolStrips\ToolStripPanel.cs (9)
529
controlLocations[j] = new Point(row.
Bounds
.Width - control.Right, control.Top);
631
if (row.
Bounds
.Contains(controlArray[i].Location))
848
pointInCurrentRow = currentToolStripPanelRow.
Bounds
.Contains(clientLocation);
902
Point endLocation = (Orientation == Orientation.Horizontal) ? new Point(clientLocation.X, row.
Bounds
.Y) : new Point(row.
Bounds
.X, clientLocation.Y);
930
clientLocation.Y = row.
Bounds
.Y;
1027
Rectangle bounds = LayoutUtils.InflateRect(row.
Bounds
, row.Margin);
1113
{c1.Name ?? ""}: {c1.Bounds} row {GetRow(draggedToolStrip1, RowsInternal)} row bounds {draggedToolStrip1.ToolStripPanelRow?.
Bounds
}
1114
{c2.Name ?? ""}: {c2.Bounds} row {GetRow(draggedToolStrip2, RowsInternal)} row bounds {draggedToolStrip2.ToolStripPanelRow?.
Bounds
}");
System\Windows\Forms\Controls\ToolStrips\ToolStripPanelCell.cs (3)
272
constrainingSize.Width = ToolStripPanelRow.
Bounds
.Width;
278
constrainingSize.Height = ToolStripPanelRow.
Bounds
.Height;
366
if (ToolStripPanelRow.
Bounds
== Rectangle.Empty)
System\Windows\Forms\Controls\ToolStrips\ToolStripPanelRow.cs (1)
648
Rectangle displayRectangle =
Bounds
;
System\Windows\Forms\Controls\ToolStrips\ToolStripPanelRow.HorizontalRowManager.cs (3)
51
Rectangle dragBounds = Row.
Bounds
;
56
Rectangle previousRowBounds = ToolStripPanel.RowsInternal[index - 1].
Bounds
;
65
Rectangle nextRowBounds = ToolStripPanel.RowsInternal[index + 1].
Bounds
;
System\Windows\Forms\Controls\ToolStrips\ToolStripPanelRow.VerticalRowManager.cs (3)
52
Rectangle dragBounds = Row.
Bounds
;
57
Rectangle previousRowBounds = ToolStripPanel.RowsInternal[index - 1].
Bounds
;
66
Rectangle nextRowBounds = ToolStripPanel.RowsInternal[index + 1].
Bounds
;