1 write to _hwndWindowRectInScreenCoords
PresentationCore (1)
System\Windows\InterOp\HwndTarget.cs (1)
1645
SafeNativeMethods.GetWindowRect(hWnd, ref
_hwndWindowRectInScreenCoords
);
10 references to _hwndWindowRectInScreenCoords
PresentationCore (10)
System\Windows\InterOp\HwndTarget.cs (10)
1929
windowRectInScreenCoords.left =
_hwndWindowRectInScreenCoords
.left;
1931
windowRectInScreenCoords.top =
_hwndWindowRectInScreenCoords
.top;
1940
int width = (
_hwndWindowRectInScreenCoords
.right -
_hwndWindowRectInScreenCoords
.left);
1941
int height = (
_hwndWindowRectInScreenCoords
.bottom -
_hwndWindowRectInScreenCoords
.top);
1947
positionChanged = (
_hwndWindowRectInScreenCoords
.left != windowRectInScreenCoords.left
1948
||
_hwndWindowRectInScreenCoords
.top != windowRectInScreenCoords.top
1949
||
_hwndWindowRectInScreenCoords
.right != windowRectInScreenCoords.right
1950
||
_hwndWindowRectInScreenCoords
.bottom != windowRectInScreenCoords.bottom);