12 references to X
System.Windows.Forms (9)
System\Windows\Forms\BoundsSpecified.cs (2)
34/// Both <see cref="X"/> and <see cref="Y"/> coordinates of the 37Location = X | Y,
System\Windows\Forms\Control.cs (3)
2497set => SetBounds(value, _y, _width, _height, BoundsSpecified.X); 5380if ((specified & BoundsSpecified.X) != 0) 10093if ((specified & BoundsSpecified.X) == BoundsSpecified.None)
System\Windows\Forms\Form.cs (3)
5246_restoredWindowBoundsSpecified |= (specified & (BoundsSpecified.X | BoundsSpecified.Y)); 5251if ((specified & BoundsSpecified.X) != 0) 5275if ((specified & BoundsSpecified.X) != 0)
System\Windows\Forms\Layout\CommonProperties.cs (1)
290bool xChangedButNotSpecified = ((specified & BoundsSpecified.X) == BoundsSpecified.None) & x != originalBounds.X;
System.Windows.Forms.Design (3)
System\Windows\Forms\Design\Behavior\ResizeBehavior.cs (3)
736specified |= BoundsSpecified.X; 776if (((specified & BoundsSpecified.X) == BoundsSpecified.X) &&