1 write to _lastClientRect
System.Windows.Forms (1)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyGridView.cs (1)
3611
_lastClientRect
= newRect;
11 references to _lastClientRect
System.Windows.Forms (11)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyGridView.cs (11)
3577
int yDelta =
_lastClientRect
== Rectangle.Empty ? 0 : newRect.Height -
_lastClientRect
.Height;
3581
if (!
_lastClientRect
.IsEmpty && newRect.Width >
_lastClientRect
.Width)
3583
Rectangle rectInvalidate = new(
_lastClientRect
.Width - 1, 0, newRect.Width -
_lastClientRect
.Width + 1,
_lastClientRect
.Height);
3587
if (!
_lastClientRect
.IsEmpty && yDelta > 0)
3589
Rectangle rectInvalidate = new(0,
_lastClientRect
.Height - 1,
_lastClientRect
.Width, newRect.Height -
_lastClientRect
.Height + 1);