3 overrides of SetBounds
System.Windows.Forms (3)
winforms\Managed\System\WinForms\ToolStripMenuItem.cs (1)
1183internal protected override void SetBounds(Rectangle rect) {
winforms\Managed\System\WinForms\ToolStripOverflowButton.cs (1)
120internal protected override void SetBounds(Rectangle bounds) {
winforms\Managed\System\WinForms\ToolStripSeparator.cs (1)
458internal protected override void SetBounds(Rectangle rect) {
13 references to SetBounds
System.Windows.Forms (13)
winforms\Managed\System\WinForms\ToolStrip.cs (2)
4180item.SetBounds(new Rectangle(location, item.Size)); 4312Grip.SetBounds(gripRectangle);
winforms\Managed\System\WinForms\ToolStripControlHost.cs (1)
54SetBounds(c.Bounds);
winforms\Managed\System\WinForms\ToolStripDropDownMenu.cs (2)
783UpScrollButton.SetBounds(new Rectangle(upLocation, upSize)); 789DownScrollButton.SetBounds(new Rectangle(downLocation, downSize));
winforms\Managed\System\WinForms\ToolStripItem.cs (3)
1188SetBounds(bounds); 2192SetBounds(currentBounds); 3639SetBounds(new Rectangle(x,y,width,height));
winforms\Managed\System\WinForms\ToolStripMenuItem.cs (1)
1198base.SetBounds(rect);
winforms\Managed\System\WinForms\ToolStripOverflowButton.cs (1)
132base.SetBounds(bounds);
winforms\Managed\System\WinForms\ToolStripSeparator.cs (1)
472base.SetBounds(rect);
winforms\Managed\System\WinForms\ToolStripSplitButton.cs (1)
395this.SplitButtonButton.SetBounds(splitButtonButtonBounds);
winforms\Managed\System\WinForms\ToolStripSplitStackLayout.cs (1)
544item.SetBounds(new Rectangle(itemLocation, itemSize));