1 write to _hwndWindowRectInScreenCoords
PresentationCore (1)
Core\CSharp\System\Windows\Interop\HwndTarget.cs (1)
1797SafeNativeMethods.GetWindowRect(hWnd, ref _hwndWindowRectInScreenCoords);
10 references to _hwndWindowRectInScreenCoords
PresentationCore (10)
Core\CSharp\System\Windows\Interop\HwndTarget.cs (10)
2102windowRectInScreenCoords.left = _hwndWindowRectInScreenCoords.left; 2104windowRectInScreenCoords.top = _hwndWindowRectInScreenCoords.top; 2113int width = (_hwndWindowRectInScreenCoords.right - _hwndWindowRectInScreenCoords.left); 2114int height = (_hwndWindowRectInScreenCoords.bottom - _hwndWindowRectInScreenCoords.top); 2120positionChanged = ( _hwndWindowRectInScreenCoords.left != windowRectInScreenCoords.left 2121|| _hwndWindowRectInScreenCoords.top != windowRectInScreenCoords.top 2122|| _hwndWindowRectInScreenCoords.right != windowRectInScreenCoords.right 2123|| _hwndWindowRectInScreenCoords.bottom != windowRectInScreenCoords.bottom);