1 write to _lastClientRect
System.Windows.Forms (1)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyGridView.cs (1)
3626
_lastClientRect
= newRect;
11 references to _lastClientRect
System.Windows.Forms (11)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyGridView.cs (11)
3592
int yDelta =
_lastClientRect
== Rectangle.Empty ? 0 : newRect.Height -
_lastClientRect
.Height;
3596
if (!
_lastClientRect
.IsEmpty && newRect.Width >
_lastClientRect
.Width)
3598
Rectangle rectInvalidate = new(
_lastClientRect
.Width - 1, 0, newRect.Width -
_lastClientRect
.Width + 1,
_lastClientRect
.Height);
3602
if (!
_lastClientRect
.IsEmpty && yDelta > 0)
3604
Rectangle rectInvalidate = new(0,
_lastClientRect
.Height - 1,
_lastClientRect
.Width, newRect.Height -
_lastClientRect
.Height + 1);