9 references to X
System.Windows.Forms (9)
winforms\Managed\System\WinForms\BoundsSpecified.cs (1)
69Location = X | Y,
winforms\Managed\System\WinForms\Control.cs (4)
3218SetBounds(value, y, width, height, BoundsSpecified.X); 6611if ((specified & BoundsSpecified.X) != 0) { 11506if (dx == 1.0F) specified &= ~(BoundsSpecified.X | BoundsSpecified.Width); 11823if ((specified & BoundsSpecified.X) == BoundsSpecified.None) x = this.x;
winforms\Managed\System\WinForms\Form.cs (3)
5867restoredWindowBoundsSpecified |= (specified & (BoundsSpecified.X | BoundsSpecified.Y)); 5871if ((specified & BoundsSpecified.X) != 0) 5886if ((specified & BoundsSpecified.X) != 0)
winforms\Managed\System\WinForms\Layout\CommonProperties.cs (1)
279bool xChangedButNotSpecified = ((specified & BoundsSpecified.X) == BoundsSpecified.None) & x != originalBounds.X;