1 write to lastClientRect
System.Windows.Forms (1)
winforms\Managed\System\WinForms\PropertyGridInternal\PropertyGridView.cs (1)
3809
lastClientRect
= newRect;
11 references to lastClientRect
System.Windows.Forms (11)
winforms\Managed\System\WinForms\PropertyGridInternal\PropertyGridView.cs (11)
3774
int yDelta =
lastClientRect
== Rectangle.Empty ? 0 : newRect.Height -
lastClientRect
.Height;
3782
if (!
lastClientRect
.IsEmpty && newRect.Width >
lastClientRect
.Width) {
3783
Rectangle rectInvalidate = new Rectangle(
lastClientRect
.Width-1,0,newRect.Width-
lastClientRect
.Width+1,
lastClientRect
.Height);
3787
if (!
lastClientRect
.IsEmpty && yDelta > 0) {
3788
Rectangle rectInvalidate = new Rectangle(0,
lastClientRect
.Height-1,
lastClientRect
.Width,newRect.Height-
lastClientRect
.Height+1);