1 write to _hwndWindowRectInScreenCoords
PresentationCore (1)
System\Windows\InterOp\HwndTarget.cs (1)
1632SafeNativeMethods.GetWindowRect(hWnd, ref _hwndWindowRectInScreenCoords);
10 references to _hwndWindowRectInScreenCoords
PresentationCore (10)
System\Windows\InterOp\HwndTarget.cs (10)
1916windowRectInScreenCoords.left = _hwndWindowRectInScreenCoords.left; 1918windowRectInScreenCoords.top = _hwndWindowRectInScreenCoords.top; 1927int width = (_hwndWindowRectInScreenCoords.right - _hwndWindowRectInScreenCoords.left); 1928int height = (_hwndWindowRectInScreenCoords.bottom - _hwndWindowRectInScreenCoords.top); 1934positionChanged = ( _hwndWindowRectInScreenCoords.left != windowRectInScreenCoords.left 1935|| _hwndWindowRectInScreenCoords.top != windowRectInScreenCoords.top 1936|| _hwndWindowRectInScreenCoords.right != windowRectInScreenCoords.right 1937|| _hwndWindowRectInScreenCoords.bottom != windowRectInScreenCoords.bottom);