2 writes to _width
System.Windows.Forms (2)
System\Windows\Forms\Control.cs (2)
379
_width
= defaultSize.Width;
11693
_width
= width;
19 references to _width
System.Windows.Forms (19)
System\Windows\Forms\Control.cs (19)
387
if (
_width
!= 0 && _height != 0)
394
_clientWidth =
_width
- rect.Width;
1292
get => new(_x, _y,
_width
, _height);
1592
cp.Width =
_width
;
2433
set => SetBounds(_x, _y,
_width
, value, BoundsSpecified.Height);
2685
set => SetBounds(value, _y,
_width
, _height, BoundsSpecified.X);
2697
set => SetBounds(value.X, value.Y,
_width
, _height, BoundsSpecified.Location);
3116
public int Right => _x +
_width
;
3288
get => new(
_width
, _height);
3451
set => SetBounds(_x, value,
_width
, _height, BoundsSpecified.Y);
3807
get =>
_width
;
10687
int sw =
_width
;
10690
sw = (int)(Math.Round((_x +
_width
) * dx)) - sx;
10852
if (_x != x || _y != y ||
_width
!= width || _height != height)
10892
width =
_width
;
10900
if (_x != x || _y != y ||
_width
!= width || _height != height)
10940
if (_x == x && _y == y &&
_width
== width && _height == height)
10974
if (
_width
== width && _height == height)
11550
return
_width
!= s.Width || _height != s.Height;