5 instantiations of RECT
System.Windows.Controls.Ribbon (5)
Microsoft\Windows\Controls\Ribbon\NativeMethods.cs (3)
286internal RECT rcMonitor = new RECT(); 287internal RECT rcWork = new RECT(); 399NativeMethods.RECT rc = new NativeMethods.RECT
Microsoft\Windows\Controls\Ribbon\Ribbon.cs (1)
1580NativeMethods.RECT popupPlacementTargetRect = new NativeMethods.RECT
Microsoft\Windows\Controls\Ribbon\RibbonDropDownHelper.cs (1)
164NativeMethods.RECT rect = new NativeMethods.RECT() { top = 0, bottom = 0, left = 0, right = 0 };
10 references to RECT
System.Windows.Controls.Ribbon (10)
Microsoft\Windows\Controls\Ribbon\NativeMethods.cs (6)
286internal RECT rcMonitor = new RECT(); 287internal RECT rcWork = new RECT(); 318public static extern IntPtr MonitorFromRect(ref RECT rect, int flags); 397internal static NativeMethods.RECT FromRect(Rect rect) 399NativeMethods.RECT rc = new NativeMethods.RECT 419internal static Rect ToRect(NativeMethods.RECT rc)
Microsoft\Windows\Controls\Ribbon\Ribbon.cs (2)
1580NativeMethods.RECT popupPlacementTargetRect = new NativeMethods.RECT 1593NativeMethods.RECT rect = monitorInfo.rcMonitor;
Microsoft\Windows\Controls\Ribbon\RibbonDropDownHelper.cs (2)
164NativeMethods.RECT rect = new NativeMethods.RECT() { top = 0, bottom = 0, left = 0, right = 0 }; 165NativeMethods.RECT nativeBounds = NativeMethods.FromRect(targetBoundingBox);