1 write to _y
System.Windows.Forms (1)
System\Windows\Forms\Control.cs (1)
11692
_y
= y;
18 references to _y
System.Windows.Forms (18)
System\Windows\Forms\Control.cs (18)
1279
public int Bottom =>
_y
+ _height;
1292
get => new(_x,
_y
, _width, _height);
1591
cp.Y =
_y
;
2433
set => SetBounds(_x,
_y
, _width, value, BoundsSpecified.Height);
2685
set => SetBounds(value,
_y
, _width, _height, BoundsSpecified.X);
2696
get => new(_x,
_y
);
3289
set => SetBounds(_x,
_y
, value.Width, value.Height, BoundsSpecified.Size);
3450
get =>
_y
;
3808
set => SetBounds(_x,
_y
, value, _height, BoundsSpecified.Width);
10685
int sy = (int)Math.Round(
_y
* dy);
10696
sh = (int)(Math.Round((
_y
+ _height) * dy)) - sy;
10852
if (_x != x ||
_y
!= y || _width != width || _height != height)
10887
y =
_y
;
10900
if (_x != x ||
_y
!= y || _width != width || _height != height)
10940
if (_x == x &&
_y
== y && _width == width && _height == height)
10969
if (_x == x &&
_y
== y)
11688
bool newLocation = _x != x ||
_y
!= y;
13550
if (locationProperty is not null && !locationProperty.IsReadOnly && (bounds.X != _x || bounds.Y !=
_y
))