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