1 instantiation of RECT
PresentationFramework (1)
System\Windows\Standard\NativeMethods.cs (1)
2019return 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)
1726public RECT rcTitleBar; 1740public RECT rcTitleBar; 1747public RECT rgrect_TitleBar; 1748public RECT rgrect_Reserved; 1749public RECT rgrect_MinimizeButton; 1750public RECT rgrect_MaximizeButton; 1751public RECT rgrect_HelpButton; 1752public RECT rgrect_CloseButton; 1937public RECT rcMonitor; 1938public RECT rcWork; 2017public static RECT Union(RECT rect1, RECT rect2) 2032var rc = (RECT)obj; 2160public RECT rcNormalPosition; 2280private static extern bool _AdjustWindowRectEx(ref RECT lpRect, WS dwStyle, [MarshalAs(UnmanagedType.Bool)] bool bMenu, WS_EX dwExStyle); 2282public static RECT AdjustWindowRectEx(RECT lpRect, WS dwStyle, bool bMenu, WS_EX dwExStyle) 2431private static extern IntPtr _CreateRectRgnIndirect([In] ref RECT lprc); 2433public static IntPtr CreateRectRgnIndirect(RECT lprc) 2669private static extern bool _GetClientRect(IntPtr hwnd, [Out] out RECT lpRect); 2671public static RECT GetClientRect(IntPtr hwnd) 2673RECT rc; 2845private static extern bool _GetWindowRect(IntPtr hWnd, out RECT lpRect); 2847public static RECT GetWindowRect(IntPtr hwnd) 2849RECT rc;