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