30 references to SetBounds
System.Windows.Forms (15)
System\Windows\Forms\Control.cs (8)
1084set => SetBounds(value.X, value.Y, value.Width, value.Height, BoundsSpecified.All); 2231set => SetBounds(_x, _y, _width, value, BoundsSpecified.Height); 2483set => SetBounds(value, _y, _width, _height, BoundsSpecified.X); 2495set => SetBounds(value.X, value.Y, _width, _height, BoundsSpecified.Location); 3087set => SetBounds(_x, _y, value.Width, value.Height, BoundsSpecified.Size); 3249set => SetBounds(_x, value, _width, _height, BoundsSpecified.Y); 3606set => SetBounds(_x, _y, value, _height, BoundsSpecified.Width); 9897SetBounds(sx, sy, sw, sh, BoundsSpecified.All);
System\Windows\Forms\Controls\PropertyGrid\PropertyGrid.cs (1)
2580SetBounds(sx, sy, sw, sh, BoundsSpecified.All);
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\HelpPane.cs (2)
156_titleLabel.SetBounds( 163_descriptionLabel.SetBounds(
System\Windows\Forms\Controls\TrackBar\TrackBar.cs (1)
395SetBounds(r.X, r.Y, r.Height, r.Width, BoundsSpecified.All);
System\Windows\Forms\Form.cs (2)
5104SetBounds(_restoredWindowBounds.X, _restoredWindowBounds.Y, 5415SetBounds(x + workingArea.X, y + workingArea.Y, width, height, BoundsSpecified.All);
System\Windows\Forms\MDI\MDIClient.cs (1)
197SetBounds(sx, sy, sw, sh, BoundsSpecified.All);
System.Windows.Forms.Design (1)
System\Windows\Forms\Design\Behavior\ResizeBehavior.cs (1)
793control.SetBounds(bounds.X, bounds.Y, bounds.Width, bounds.Height, specified);
System.Windows.Forms.Tests (12)
System\Windows\Forms\ControlTests.Methods.cs (12)
8171control.SetBounds(x, y, width, height, specified); 8190control.SetBounds(x, y, width, height, specified); 8282control.SetBounds(x, y, width, height, specified); 8301control.SetBounds(x, y, width, height, specified); 8380control.SetBounds(x, y, width, height, specified); 8399control.SetBounds(x, y, width, height, specified); 8568control.SetBounds(x, y, width, height, specified); 8588control.SetBounds(x, y, width, height, specified); 8691control.SetBounds(x, y, width, height, specified); 8713control.SetBounds(x, y, width, height, specified); 8839control.SetBounds(x, y, width, height, specified); 8866control.SetBounds(x, y, width, height, specified);
System.Windows.Forms.UI.IntegrationTests (2)
AnchorLayoutTests.cs (2)
222button.SetBounds(bounds.X + 5, bounds.Y + 5, bounds.Width + 10, bounds.Height + 10, BoundsSpecified.None); 225button.SetBounds(bounds.X + 5, bounds.Y + 5, bounds.Width + 10, bounds.Height + 10, BoundsSpecified.All);