3 overrides of SetBounds
System.Windows.Forms (3)
System\Windows\Forms\Controls\ToolStrips\ToolStripMenuItem.cs (1)
1065protected internal override void SetBounds(Rectangle rect)
System\Windows\Forms\Controls\ToolStrips\ToolStripOverflowButton.cs (1)
89protected internal override void SetBounds(Rectangle bounds)
System\Windows\Forms\Controls\ToolStrips\ToolStripSeparator.cs (1)
306protected internal override void SetBounds(Rectangle rect)
14 references to SetBounds
System.Windows.Forms (13)
System\Windows\Forms\Controls\ToolStrips\ToolStrip.cs (2)
4071item.SetBounds(new Rectangle(location, item.Size)); 4203Grip.SetBounds(gripRectangle);
System\Windows\Forms\Controls\ToolStrips\ToolStripControlHost.cs (1)
39SetBounds(c.Bounds);
System\Windows\Forms\Controls\ToolStrips\ToolStripDropDownMenu.cs (2)
803UpScrollButton.SetBounds(new Rectangle(upLocation, upSize)); 809DownScrollButton.SetBounds(new Rectangle(downLocation, downSize));
System\Windows\Forms\Controls\ToolStrips\ToolStripItem.cs (3)
986SetBounds(bounds); 1817SetBounds(currentBounds); 3263=> SetBounds(new Rectangle(x, y, width, height));
System\Windows\Forms\Controls\ToolStrips\ToolStripMenuItem.cs (1)
1080base.SetBounds(rect);
System\Windows\Forms\Controls\ToolStrips\ToolStripOverflowButton.cs (1)
106base.SetBounds(bounds);
System\Windows\Forms\Controls\ToolStrips\ToolStripSeparator.cs (1)
317base.SetBounds(rect);
System\Windows\Forms\Controls\ToolStrips\ToolStripSplitButton.cs (1)
325SplitButtonButton.SetBounds(splitButtonButtonBounds);
System\Windows\Forms\Controls\ToolStrips\ToolStripSplitStackLayout.cs (1)
517item.SetBounds(new Rectangle(itemLocation, itemSize));
System.Windows.Forms.Tests (1)
System\Windows\Forms\ToolStripItemTests.cs (1)
15624public new void SetBounds(Rectangle bounds) => base.SetBounds(bounds);