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)
2676set => SetBounds(value, _y, _width, _height, BoundsSpecified.X); 5604if ((specified & BoundsSpecified.X) != 0) 10822if ((specified & BoundsSpecified.X) == BoundsSpecified.None)
System\Windows\Forms\Form.cs (3)
5262_restoredWindowBoundsSpecified |= (specified & (BoundsSpecified.X | BoundsSpecified.Y)); 5267if ((specified & BoundsSpecified.X) != 0) 5291if ((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) &&