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