Implemented interface member:
property
Bounds
System.Windows.Forms.Layout.IArrangedElement.Bounds
19 references to Bounds
System.Windows.Forms (19)
winforms\Managed\System\WinForms\ToolStripPanel.cs (9)
590
controlLocations[j] = new Point(row.
Bounds
.Width - control.Right, control.Top);
678
if (row.
Bounds
.Contains(controlArray[i].Location)) {
1031
pointInCurrentRow = currentToolStripPanelRow.
Bounds
.Contains(clientLocation);
1083
Point endLocation = (Orientation == Orientation.Horizontal) ? new Point (clientLocation.X, row.
Bounds
.Y) : new Point (row.
Bounds
.X, clientLocation.Y);
1111
clientLocation.Y = row.
Bounds
.Y;
1204
Rectangle bounds = LayoutUtils.InflateRect(row.
Bounds
, row.Margin);
1288
draggedToolStrip1.ToolStripPanelRow.
Bounds
);
1295
draggedToolStrip2.ToolStripPanelRow.
Bounds
);
winforms\Managed\System\WinForms\ToolStripPanelCell.cs (3)
241
constrainingSize.Width = ToolStripPanelRow.
Bounds
.Width;
246
constrainingSize.Height = ToolStripPanelRow.
Bounds
.Height;
336
if (ToolStripPanelRow != null && ToolStripPanelRow.
Bounds
== Rectangle.Empty) {
winforms\Managed\System\WinForms\ToolStripPanelRow.cs (7)
641
Rectangle displayRectangle = this.
Bounds
;
959
Rectangle dragBounds = Row.
Bounds
;
963
Rectangle previousRowBounds = ToolStripPanel.RowsInternal[index - 1].
Bounds
;
971
Rectangle nextRowBounds = ToolStripPanel.RowsInternal[index + 1].
Bounds
;
1467
Rectangle dragBounds = Row.
Bounds
;
1472
Rectangle previousRowBounds = ToolStripPanel.RowsInternal[index - 1].
Bounds
;
1480
Rectangle nextRowBounds = ToolStripPanel.RowsInternal[index + 1].
Bounds
;