1 instantiation of RECT
PresentationFramework (1)
System\Windows\Standard\NativeMethods.cs (1)
2027return new RECT
32 references to RECT
PresentationFramework (32)
System\Windows\Shell\WindowChromeWorker.cs (5)
419var rcClientArea = Marshal.PtrToStructure<RECT>(lParam); 650RECT windowPosition = NativeMethods.GetWindowRect(_hwnd); 778RECT rcMax = mi.rcWork; 1085RECT rcWindow = NativeMethods.GetWindowRect(_hwnd);
System\Windows\Standard\NativeMethods.cs (27)
1739public RECT rcTitleBar; 1753public RECT rcTitleBar; 1760public RECT rgrect_TitleBar; 1761public RECT rgrect_Reserved; 1762public RECT rgrect_MinimizeButton; 1763public RECT rgrect_MaximizeButton; 1764public RECT rgrect_HelpButton; 1765public RECT rgrect_CloseButton; 1945public RECT rcMonitor; 1946public RECT rcWork; 2025public static RECT Union(RECT rect1, RECT rect2) 2040var rc = (RECT)obj; 2168public RECT rcNormalPosition; 2288private static extern bool _AdjustWindowRectEx(ref RECT lpRect, WS dwStyle, [MarshalAs(UnmanagedType.Bool)] bool bMenu, WS_EX dwExStyle); 2290public static RECT AdjustWindowRectEx(RECT lpRect, WS dwStyle, bool bMenu, WS_EX dwExStyle) 2439private static extern IntPtr _CreateRectRgnIndirect([In] ref RECT lprc); 2441public static IntPtr CreateRectRgnIndirect(RECT lprc) 2641private static extern bool _GetClientRect(IntPtr hwnd, [Out] out RECT lpRect); 2643public static RECT GetClientRect(IntPtr hwnd) 2645RECT rc; 2817private static extern bool _GetWindowRect(IntPtr hWnd, out RECT lpRect); 2819public static RECT GetWindowRect(IntPtr hwnd) 2821RECT rc;