5 instantiations of RECT
System.Windows.Controls.Ribbon (5)
Microsoft\Windows\Controls\Ribbon\NativeMethods.cs (3)
287internal RECT rcMonitor = new RECT(); 288internal RECT rcWork = new RECT(); 400NativeMethods.RECT rc = new NativeMethods.RECT();
Microsoft\Windows\Controls\Ribbon\Ribbon.cs (1)
1602NativeMethods.RECT popupPlacementTargetRect = new NativeMethods.RECT();
Microsoft\Windows\Controls\Ribbon\RibbonDropDownHelper.cs (1)
165NativeMethods.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)
287internal RECT rcMonitor = new RECT(); 288internal RECT rcWork = new RECT(); 319public static extern IntPtr MonitorFromRect(ref RECT rect, int flags); 398internal static NativeMethods.RECT FromRect(Rect rect) 400NativeMethods.RECT rc = new NativeMethods.RECT(); 419internal static Rect ToRect(NativeMethods.RECT rc)
Microsoft\Windows\Controls\Ribbon\Ribbon.cs (2)
1602NativeMethods.RECT popupPlacementTargetRect = new NativeMethods.RECT(); 1613NativeMethods.RECT rect = monitorInfo.rcMonitor;
Microsoft\Windows\Controls\Ribbon\RibbonDropDownHelper.cs (2)
165NativeMethods.RECT rect = new NativeMethods.RECT() { top = 0, bottom = 0, left = 0, right = 0 }; 166NativeMethods.RECT nativeBounds = NativeMethods.FromRect(targetBoundingBox);