3 instantiations of RECT
PresentationFramework (3)
src\Framework\System\Windows\Shell\WindowChromeWorker.cs (2)
548
RECT adjustedDeviceRc = _GetAdjustedWindowRect(new
RECT
{ Bottom = 100, Right = 100 });
601
RECT adjustedOffset = _GetAdjustedWindowRect(new
RECT
{ Bottom = 100, Right = 100 });
src\Framework\System\Windows\Standard\NativeMethods.cs (1)
2144
return new
RECT
38 references to RECT
PresentationFramework (38)
src\Framework\System\Windows\Shell\WindowChromeWorker.cs (11)
442
RECT
rcWindow = NativeMethods.GetWindowRect(_hwnd);
443
RECT
rcAdjustedClient = _GetAdjustedWindowRect(rcWindow);
548
RECT
adjustedDeviceRc = _GetAdjustedWindowRect(new RECT { Bottom = 100, Right = 100 });
566
private
RECT
_GetAdjustedWindowRect(
RECT
rcWindow)
601
RECT
adjustedOffset = _GetAdjustedWindowRect(new RECT { Bottom = 100, Right = 100 });
696
var
rcClientArea = (
RECT
)Marshal.PtrToStructure(lParam, typeof(
RECT
));
1040
RECT
windowPosition = NativeMethods.GetWindowRect(_hwnd);
1184
RECT
rcMax = mi.rcWork;
src\Framework\System\Windows\Standard\NativeMethods.cs (27)
1843
public
RECT
rcTitleBar;
1857
public
RECT
rcTitleBar;
1864
public
RECT
rgrect_TitleBar;
1865
public
RECT
rgrect_Reserved;
1866
public
RECT
rgrect_MinimizeButton;
1867
public
RECT
rgrect_MaximizeButton;
1868
public
RECT
rgrect_HelpButton;
1869
public
RECT
rgrect_CloseButton;
2053
public
RECT
rcMonitor;
2054
public
RECT
rcWork;
2142
public static
RECT
Union(
RECT
rect1,
RECT
rect2)
2157
var
rc = (
RECT
)obj;
2293
public
RECT
rcNormalPosition;
2418
private static extern bool _AdjustWindowRectEx(ref
RECT
lpRect, WS dwStyle, [MarshalAs(UnmanagedType.Bool)] bool bMenu, WS_EX dwExStyle);
2424
public static
RECT
AdjustWindowRectEx(
RECT
lpRect, WS dwStyle, bool bMenu, WS_EX dwExStyle)
2644
private static extern IntPtr _CreateRectRgnIndirect([In] ref
RECT
lprc);
2651
public static IntPtr CreateRectRgnIndirect(
RECT
lprc)
2967
private static extern bool _GetClientRect(IntPtr hwnd, [Out] out
RECT
lpRect);
2974
public static
RECT
GetClientRect(IntPtr hwnd)
2976
RECT
rc;
3236
private static extern bool _GetWindowRect(IntPtr hWnd, out
RECT
lpRect);
3242
public static
RECT
GetWindowRect(IntPtr hwnd)
3244
RECT
rc;