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