1 write to _hwndWindowRectInScreenCoords
PresentationCore (1)
System\Windows\InterOp\HwndTarget.cs (1)
1625
SafeNativeMethods.GetWindowRect(hWnd, ref
_hwndWindowRectInScreenCoords
);
10 references to _hwndWindowRectInScreenCoords
PresentationCore (10)
System\Windows\InterOp\HwndTarget.cs (10)
1909
windowRectInScreenCoords.left =
_hwndWindowRectInScreenCoords
.left;
1911
windowRectInScreenCoords.top =
_hwndWindowRectInScreenCoords
.top;
1920
int width = (
_hwndWindowRectInScreenCoords
.right -
_hwndWindowRectInScreenCoords
.left);
1921
int height = (
_hwndWindowRectInScreenCoords
.bottom -
_hwndWindowRectInScreenCoords
.top);
1927
positionChanged = (
_hwndWindowRectInScreenCoords
.left != windowRectInScreenCoords.left
1928
||
_hwndWindowRectInScreenCoords
.top != windowRectInScreenCoords.top
1929
||
_hwndWindowRectInScreenCoords
.right != windowRectInScreenCoords.right
1930
||
_hwndWindowRectInScreenCoords
.bottom != windowRectInScreenCoords.bottom);