24 references to LessThanOrClose
System.Windows.Controls.Ribbon (24)
Microsoft\Windows\Controls\Ribbon\Primitives\RibbonGalleryCategoriesPanel.cs (1)
491logicalVisibleSpace = DoubleUtil.LessThanOrClose((viewportOffsetY + logicalVisibleSpace) - stackDesiredSize.Height, 0.0) ? 0.0 : Math.Min((viewportOffsetY + logicalVisibleSpace) - stackDesiredSize.Height, constraint.Height);
Microsoft\Windows\Controls\Ribbon\Primitives\RibbonGroupsPanel.cs (2)
441if (DoubleUtil.LessThanOrClose(EqualizeLeftOf(starInfoList, elementCount - 1, true), remainingSpace)) 457if (DoubleUtil.LessThanOrClose(EqualizeLeftOf(starInfoList, currentIndex, true), remainingSpace))
Microsoft\Windows\Controls\Ribbon\Primitives\RibbonScrollButtonVisibilityConverter.cs (1)
83if (DoubleUtil.LessThanOrClose(extent, viewport))
Microsoft\Windows\Controls\Ribbon\Primitives\RibbonTabHeadersPanel.cs (2)
478if (DoubleUtil.LessThanOrClose(clipWidth, 0)) 569if (DoubleUtil.LessThanOrClose(delta, 0.0))
Microsoft\Windows\Controls\Ribbon\Primitives\RibbonTitlePanel.cs (2)
140if (DoubleUtil.LessThanOrClose(titleHost.DesiredSize.Width, leftSpace)) 214if ( DoubleUtil.LessThanOrClose(width, leftSpace) )
Microsoft\Windows\Controls\Ribbon\RibbonControlSizeDefinition.cs (1)
107if (double.IsInfinity(length.Value) || DoubleUtil.LessThanOrClose(length.Value, 0))
Microsoft\Windows\Controls\Ribbon\RibbonDropDownHelper.cs (6)
66bool isAtTopScreenEdge = DoubleUtil.LessThanOrClose(rootScreenBounds.Top, screenBounds.Top + TopScreenEdgeBuffer); 68bool isAtLeftScreenEdge = DoubleUtil.LessThanOrClose(rootScreenBounds.Left, screenBounds.Left); 73bool isAlmostAtTopScreenEdge = DoubleUtil.LessThanOrClose(rootScreenBounds.Top - verticalDelta, screenBounds.Top + TopScreenEdgeBuffer); 75bool isAlmostAtLeftScreenEdge = DoubleUtil.LessThanOrClose(rootScreenBounds.Left - horizontalDelta, screenBounds.Left); 135DoubleUtil.LessThanOrClose(minDropDownSize.Width, newWidth)) 142&& DoubleUtil.LessThanOrClose(minDropDownSize.Height, newHeight))
Microsoft\Windows\Controls\Ribbon\RibbonGroup.cs (2)
1690DoubleUtil.LessThanOrClose(horizontalOffset, ribbon.ActualWidth)) 1720DoubleUtil.LessThanOrClose(horizontalOffset, ribbonPopupChild.RenderSize.Width))
Microsoft\Windows\Controls\Ribbon\RibbonHelper.cs (5)
819if (DoubleUtil.LessThanOrClose(viewportHeight, 0)) 848if (DoubleUtil.LessThanOrClose(viewportHeight, 0)) 882if (DoubleUtil.LessThanOrClose(viewportHeight, 0) || 1114DoubleUtil.LessThanOrClose(position.X, element.RenderSize.Width) && 1115DoubleUtil.LessThanOrClose(position.Y, element.RenderSize.Height))
Microsoft\Windows\Controls\Ribbon\RibbonMenuButton.cs (1)
1264IsDropDownPositionedAbove = DoubleUtil.LessThanOrClose(popupBottomRightCorner.Y, targetTopLeftCorner.Y);
Microsoft\Windows\Controls\Ribbon\RibbonMenuItem.cs (1)
1305bool isDropDownPhysicallyPositionedLeft = DoubleUtil.LessThanOrClose(popupTopLeftCorner.X, targetTopLeftCorner.X);