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