1 instantiation of RECT
PresentationFramework (1)
System\Windows\Standard\NativeMethods.cs (1)
2017return new RECT
32 references to RECT
PresentationFramework (32)
System\Windows\Shell\WindowChromeWorker.cs (5)
413var rcClientArea = Marshal.PtrToStructure<RECT>(lParam); 644RECT windowPosition = NativeMethods.GetWindowRect(_hwnd); 772RECT rcMax = mi.rcWork; 1079RECT rcWindow = NativeMethods.GetWindowRect(_hwnd);
System\Windows\Standard\NativeMethods.cs (27)
1724public RECT rcTitleBar; 1738public RECT rcTitleBar; 1745public RECT rgrect_TitleBar; 1746public RECT rgrect_Reserved; 1747public RECT rgrect_MinimizeButton; 1748public RECT rgrect_MaximizeButton; 1749public RECT rgrect_HelpButton; 1750public RECT rgrect_CloseButton; 1935public RECT rcMonitor; 1936public RECT rcWork; 2015public static RECT Union(RECT rect1, RECT rect2) 2030var rc = (RECT)obj; 2158public RECT rcNormalPosition; 2278private static extern bool _AdjustWindowRectEx(ref RECT lpRect, WS dwStyle, [MarshalAs(UnmanagedType.Bool)] bool bMenu, WS_EX dwExStyle); 2280public static RECT AdjustWindowRectEx(RECT lpRect, WS dwStyle, bool bMenu, WS_EX dwExStyle) 2429private static extern IntPtr _CreateRectRgnIndirect([In] ref RECT lprc); 2431public static IntPtr CreateRectRgnIndirect(RECT lprc) 2631private static extern bool _GetClientRect(IntPtr hwnd, [Out] out RECT lpRect); 2633public static RECT GetClientRect(IntPtr hwnd) 2635RECT rc; 2807private static extern bool _GetWindowRect(IntPtr hWnd, out RECT lpRect); 2809public static RECT GetWindowRect(IntPtr hwnd) 2811RECT rc;