1 write to _y
System.Windows.Forms (1)
System\Windows\Forms\Control.cs (1)
10892
_y
= y;
18 references to _y
System.Windows.Forms (18)
System\Windows\Forms\Control.cs (18)
1070
public int Bottom =>
_y
+ _height;
1083
get => new(_x,
_y
, _width, _height);
1389
cp.Y =
_y
;
2231
set => SetBounds(_x,
_y
, _width, value, BoundsSpecified.Height);
2483
set => SetBounds(value,
_y
, _width, _height, BoundsSpecified.X);
2494
get => new(_x,
_y
);
3087
set => SetBounds(_x,
_y
, value.Width, value.Height, BoundsSpecified.Size);
3248
get =>
_y
;
3606
set => SetBounds(_x,
_y
, value, _height, BoundsSpecified.Width);
9883
int sy = (int)Math.Round(
_y
* dy);
9894
sh = (int)(Math.Round((
_y
+ _height) * dy)) - sy;
10050
if (_x != x ||
_y
!= y || _width != width || _height != height)
10085
y =
_y
;
10098
if (_x != x ||
_y
!= y || _width != width || _height != height)
10138
if (_x == x &&
_y
== y && _width == width && _height == height)
10167
if (_x == x &&
_y
== y)
10888
bool newLocation = _x != x ||
_y
!= y;
12738
if (locationProperty is not null && !locationProperty.IsReadOnly && (bounds.X != _x || bounds.Y !=
_y
))