1 write to _y
System.Windows.Forms (1)
System\Windows\Forms\Control.cs (1)
10797
_y
= y;
18 references to _y
System.Windows.Forms (18)
System\Windows\Forms\Control.cs (18)
997
public int Bottom =>
_y
+ _height;
1010
get => new(_x,
_y
, _width, _height);
1316
cp.Y =
_y
;
2158
set => SetBounds(_x,
_y
, _width, value, BoundsSpecified.Height);
2410
set => SetBounds(value,
_y
, _width, _height, BoundsSpecified.X);
2421
get => new(_x,
_y
);
3014
set => SetBounds(_x,
_y
, value.Width, value.Height, BoundsSpecified.Size);
3175
get =>
_y
;
3533
set => SetBounds(_x,
_y
, value, _height, BoundsSpecified.Width);
9801
int sy = (int)Math.Round(
_y
* dy);
9812
sh = (int)(Math.Round((
_y
+ _height) * dy)) - sy;
9971
if (_x != x ||
_y
!= y || _width != width || _height != height)
10006
y =
_y
;
10019
if (_x != x ||
_y
!= y || _width != width || _height != height)
10059
if (_x == x &&
_y
== y && _width == width && _height == height)
10088
if (_x == x &&
_y
== y)
10793
bool newLocation = _x != x ||
_y
!= y;
12646
if (locationProperty is not null && !locationProperty.IsReadOnly && (bounds.X != _x || bounds.Y !=
_y
))