1 instantiation of RECT
PresentationFramework (1)
System\Windows\Standard\NativeMethods.cs (1)
2022return new RECT
32 references to RECT
PresentationFramework (32)
System\Windows\Shell\WindowChromeWorker.cs (5)
414var rcClientArea = Marshal.PtrToStructure<RECT>(lParam); 645RECT windowPosition = NativeMethods.GetWindowRect(_hwnd); 773RECT rcMax = mi.rcWork; 1080RECT rcWindow = NativeMethods.GetWindowRect(_hwnd);
System\Windows\Standard\NativeMethods.cs (27)
1734public RECT rcTitleBar; 1748public RECT rcTitleBar; 1755public RECT rgrect_TitleBar; 1756public RECT rgrect_Reserved; 1757public RECT rgrect_MinimizeButton; 1758public RECT rgrect_MaximizeButton; 1759public RECT rgrect_HelpButton; 1760public RECT rgrect_CloseButton; 1940public RECT rcMonitor; 1941public RECT rcWork; 2020public static RECT Union(RECT rect1, RECT rect2) 2035var rc = (RECT)obj; 2163public RECT rcNormalPosition; 2283private static extern bool _AdjustWindowRectEx(ref RECT lpRect, WS dwStyle, [MarshalAs(UnmanagedType.Bool)] bool bMenu, WS_EX dwExStyle); 2285public static RECT AdjustWindowRectEx(RECT lpRect, WS dwStyle, bool bMenu, WS_EX dwExStyle) 2434private static extern IntPtr _CreateRectRgnIndirect([In] ref RECT lprc); 2436public static IntPtr CreateRectRgnIndirect(RECT lprc) 2636private static extern bool _GetClientRect(IntPtr hwnd, [Out] out RECT lpRect); 2638public static RECT GetClientRect(IntPtr hwnd) 2640RECT rc; 2812private static extern bool _GetWindowRect(IntPtr hWnd, out RECT lpRect); 2814public static RECT GetWindowRect(IntPtr hwnd) 2816RECT rc;