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)
529controlLocations[j] = new Point(row.Bounds.Width - control.Right, control.Top); 631if (row.Bounds.Contains(controlArray[i].Location)) 848pointInCurrentRow = currentToolStripPanelRow.Bounds.Contains(clientLocation); 902Point endLocation = (Orientation == Orientation.Horizontal) ? new Point(clientLocation.X, row.Bounds.Y) : new Point(row.Bounds.X, clientLocation.Y); 930clientLocation.Y = row.Bounds.Y; 1027Rectangle 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)
272constrainingSize.Width = ToolStripPanelRow.Bounds.Width; 278constrainingSize.Height = ToolStripPanelRow.Bounds.Height; 366if (ToolStripPanelRow.Bounds == Rectangle.Empty)
System\Windows\Forms\Controls\ToolStrips\ToolStripPanelRow.cs (1)
648Rectangle displayRectangle = Bounds;
System\Windows\Forms\Controls\ToolStrips\ToolStripPanelRow.HorizontalRowManager.cs (3)
51Rectangle dragBounds = Row.Bounds; 56Rectangle previousRowBounds = ToolStripPanel.RowsInternal[index - 1].Bounds; 65Rectangle nextRowBounds = ToolStripPanel.RowsInternal[index + 1].Bounds;
System\Windows\Forms\Controls\ToolStrips\ToolStripPanelRow.VerticalRowManager.cs (3)
52Rectangle dragBounds = Row.Bounds; 57Rectangle previousRowBounds = ToolStripPanel.RowsInternal[index - 1].Bounds; 66Rectangle nextRowBounds = ToolStripPanel.RowsInternal[index + 1].Bounds;