5 instantiations of RECT
System.Windows.Controls.Ribbon (5)
Microsoft\Windows\Controls\Ribbon\NativeMethods.cs (3)
291internal RECT rcMonitor = new RECT(); 292internal RECT rcWork = new RECT(); 404NativeMethods.RECT rc = new NativeMethods.RECT();
Microsoft\Windows\Controls\Ribbon\Ribbon.cs (1)
1605NativeMethods.RECT popupPlacementTargetRect = new NativeMethods.RECT();
Microsoft\Windows\Controls\Ribbon\RibbonDropDownHelper.cs (1)
171NativeMethods.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)
291internal RECT rcMonitor = new RECT(); 292internal RECT rcWork = new RECT(); 323public static extern IntPtr MonitorFromRect(ref RECT rect, int flags); 402internal static NativeMethods.RECT FromRect(Rect rect) 404NativeMethods.RECT rc = new NativeMethods.RECT(); 423internal static Rect ToRect(NativeMethods.RECT rc)
Microsoft\Windows\Controls\Ribbon\Ribbon.cs (2)
1605NativeMethods.RECT popupPlacementTargetRect = new NativeMethods.RECT(); 1616NativeMethods.RECT rect = monitorInfo.rcMonitor;
Microsoft\Windows\Controls\Ribbon\RibbonDropDownHelper.cs (2)
171NativeMethods.RECT rect = new NativeMethods.RECT() { top = 0, bottom = 0, left = 0, right = 0 }; 172NativeMethods.RECT nativeBounds = NativeMethods.FromRect(targetBoundingBox);