69 references to ActualHeight
Microsoft.CodeAnalysis.EditorFeatures.Wpf (1)
InlineHints\InlineHintsTag.cs (1)
249return !(mousePoint.X > hintUIElement.ActualWidth || mousePoint.X < 0 || mousePoint.Y > hintUIElement.ActualHeight || mousePoint.Y < 0);
PresentationFramework (24)
MS\Internal\Ink\InkCanvasSelection.cs (1)
398size = new Size(frameworkElement.ActualWidth, frameworkElement.ActualHeight);
System\Windows\Controls\DataGridColumnDropSeparator.cs (1)
57return separator._referenceHeader.ActualHeight;
System\Windows\Controls\DataGridColumnFloatingHeader.cs (2)
90return header._referenceHeader.ActualHeight + header.GetVisualCanvasMarginY(); 141height = _referenceHeader.ActualHeight;
System\Windows\Controls\DataGridRow.cs (1)
550double newHeight = cellsPresenter.ActualHeight + changeAmount;
System\Windows\Controls\GridSplitter.cs (2)
321else if (ActualWidth <= ActualHeight)// Fall back to Width vs Height 504_resizeData.SplitterLength = Math.Min(ActualWidth, ActualHeight);
System\Windows\Controls\GridViewColumnHeader.cs (2)
808return !((pos.X >= 0) && (pos.X <= ActualWidth) && (pos.Y >= 0) && (pos.Y <= ActualHeight)); 854visualBrush.Viewbox = new Rect(offsetVector.X, offsetVector.Y, FloatSourceHeader.ActualWidth, FloatSourceHeader.ActualHeight);
System\Windows\Controls\GridViewHeaderRowPresenter.cs (1)
1212_floatingHeader.Height = srcHeader.ActualHeight;
System\Windows\Controls\Primitives\ButtonBase.cs (1)
162if ((pos.X >= 0) && (pos.X <= ActualWidth) && (pos.Y >= 0) && (pos.Y <= ActualHeight))
System\Windows\Controls\Primitives\ScrollBar.cs (1)
168_thumbOffset = thumbPoint - new Point(Track.Thumb.ActualWidth * 0.5, Track.Thumb.ActualHeight * 0.5);
System\Windows\Controls\Primitives\TickBar.cs (2)
363Size size = new Size(ActualWidth,ActualHeight); 667yLines.Add(ActualHeight);
System\Windows\Controls\ScrollViewer.cs (4)
899Rect rc = new Rect(0, 0, this.ActualWidth, this.ActualHeight); 1628_panningInfo.DeltaPerVerticalOffset = (DoubleUtil.AreClose(viewportHeight, 0) ? 0 : viewport.ActualHeight / viewportHeight); 1633_panningInfo.DeltaPerVerticalOffset = (DoubleUtil.AreClose(viewportHeight, 0) ? 0 : ActualHeight / viewportHeight); 1672double viewportHeight = viewport.ActualHeight;
System\Windows\Controls\TextBox.cs (1)
1818double chrome = this.ScrollViewer.ActualHeight - ViewportHeight;
System\Windows\Controls\VirtualizingStackPanel.cs (1)
11243double pixelSize = fHorizontal ? ActualWidth : ActualHeight;
System\Windows\Documents\FixedTextView.cs (1)
224designRect = _GetTransformedCaretRect(tran, offset, image.ActualHeight);
System\windows\Documents\TextEditorContextMenu.cs (2)
351if (element.ActualWidth == 0 && element.ActualHeight == 0) 359maxPoint = new Point(element.ActualWidth, element.ActualHeight);
System\Windows\Window.cs (1)
2944Point newSizeDeviceUnits = LogicalToDeviceUnits(new Point(this.ActualWidth, this.ActualHeight));
PresentationFramework.Aero (4)
Microsoft\Windows\Themes\BulletChrome.cs (1)
609Rect bounds = new Rect(0, 0, ActualWidth, ActualHeight);
Microsoft\Windows\Themes\ButtonChrome.cs (1)
472Rect bounds = new Rect(0, 0, ActualWidth, ActualHeight);
Microsoft\Windows\Themes\ListBoxChrome.cs (1)
309Rect bounds = new Rect(0, 0, ActualWidth, ActualHeight);
Microsoft\Windows\Themes\ScrollChrome.cs (1)
414Rect bounds = new Rect(0, 0, ActualWidth, ActualHeight);
PresentationFramework.Aero2 (4)
Microsoft\Windows\Themes\BulletChrome.cs (1)
609Rect bounds = new Rect(0, 0, ActualWidth, ActualHeight);
Microsoft\Windows\Themes\ButtonChrome.cs (1)
472Rect bounds = new Rect(0, 0, ActualWidth, ActualHeight);
Microsoft\Windows\Themes\ListBoxChrome.cs (1)
309Rect bounds = new Rect(0, 0, ActualWidth, ActualHeight);
Microsoft\Windows\Themes\ScrollChrome.cs (1)
414Rect bounds = new Rect(0, 0, ActualWidth, ActualHeight);
PresentationFramework.AeroLite (1)
Microsoft\Windows\Themes\ScrollChrome.cs (1)
167Rect bounds = new Rect(0, 0, ActualWidth, ActualHeight);
PresentationFramework.Classic (1)
Microsoft\Windows\Themes\ClassicBorderDecorator.cs (1)
760Rect bounds = new Rect(0, 0, ActualWidth, ActualHeight);
PresentationFramework.Luna (3)
Microsoft\Windows\Themes\ButtonChrome.cs (1)
517Rect bounds = new Rect(0, 0, ActualWidth, ActualHeight);
Microsoft\Windows\Themes\ScrollChrome.cs (1)
222Rect bounds = new Rect(0, 0, ActualWidth, ActualHeight);
src\Microsoft.DotNet.Wpf\src\Themes\Shared\Microsoft\Windows\Themes\BulletChrome.cs (1)
208Rect bounds = new Rect(0, 0, ActualWidth, ActualHeight);
PresentationFramework.Royale (3)
Microsoft\Windows\Themes\ButtonChrome.cs (1)
438Rect bounds = new Rect(0, 0, ActualWidth, ActualHeight);
Microsoft\Windows\Themes\ScrollChrome.cs (1)
204Rect bounds = new Rect(0, 0, ActualWidth, ActualHeight);
src\Microsoft.DotNet.Wpf\src\Themes\Shared\Microsoft\Windows\Themes\BulletChrome.cs (1)
208Rect bounds = new Rect(0, 0, ActualWidth, ActualHeight);
Roslyn.VisualStudio.DiagnosticsWindow (1)
VenusMargin\VenusMargin.cs (1)
103return _control.ActualHeight;
System.Windows.Controls.Ribbon (24)
Microsoft\Windows\Controls\KeyTipAdorner.cs (8)
275verticalPosition -= _keyTipControl.ActualHeight; 280verticalPosition -= (_keyTipControl.ActualHeight / 2); 312keyTipBottomY += _keyTipControl.ActualHeight; 313keyTipCenterY += _keyTipControl.ActualHeight / 2; 321else if (DoubleUtil.LessThan(Math.Abs(itemsPresenter.ActualHeight - keyTipBottomY), RibbonGroupKeyTipAxisNudgeSpace)) 324double centerOffsetFromGroupBottom = keyTipCenterY - itemsPresenter.ActualHeight; 341Rect adornerLayerRect = new Rect(0, 0, adornerLayer.ActualWidth, adornerLayer.ActualHeight); 345_keyTipControl.ActualHeight);
Microsoft\Windows\Controls\Ribbon\Primitives\RibbonContextualTabGroupsPanel.cs (5)
140separatorHeight = Ribbon.RibbonTabHeaderItemsControl.InternalItemsHost.ActualHeight - RibbonContextualTabGroup.TabHeaderSeparatorHeightDelta; 154drawingContext.DrawLine(separatorPen, new Point(startX, ActualHeight), new Point(startX, this.ActualHeight + separatorHeight)); 157drawingContext.DrawLine(separatorPen, new Point(startX + tabGroupHeader.TabsDesiredWidth, ActualHeight), new Point(startX + tabGroupHeader.TabsDesiredWidth, this.ActualHeight + separatorHeight));
Microsoft\Windows\Controls\Ribbon\Primitives\RibbonTabHeadersPanel.cs (1)
259drawingContext.DrawLine(separatorPen, new Point(xOffset, 0), new Point(xOffset, this.ActualHeight));
Microsoft\Windows\Controls\Ribbon\Ribbon.cs (2)
1446DoubleUtil.LessThan(window.ActualHeight, CollapseHeight))) 1603Point endPoint = popupPlacementTarget.PointToScreen(new Point(popupPlacementTarget.ActualWidth, popupPlacementTarget.ActualHeight));
Microsoft\Windows\Controls\Ribbon\RibbonDropDownHelper.cs (1)
39itemsPresenter.Height = itemsPresenter.ActualHeight;
Microsoft\Windows\Controls\Ribbon\RibbonGroup.cs (1)
1708e.KeyTipVerticalOffset = groupOrigin.Y + ActualHeight + KeyTipVerticalOffsetDelta;
Microsoft\Windows\Controls\Ribbon\RibbonHelper.cs (2)
819viewportHeight -= prevCategory.HeaderPresenter.ActualHeight; 848viewportHeight -= category.HeaderPresenter.ActualHeight;
Microsoft\Windows\Controls\Ribbon\RibbonTabHeader.cs (3)
299Point leftBottom = new Point(margin.Left + borderThickness.Left, ActualHeight); 300Point rightBottom = new Point(ActualWidth - margin.Right - borderThickness.Right, ActualHeight); 679e.KeyTipVerticalOffset = tabHeaderItemsControlOrigin.Y + tabHeaderOrigin.Y + ActualHeight + KeyTipVerticalOffset;
Microsoft\Windows\Controls\Ribbon\RibbonToolTip.cs (1)
400transformGroup.TryTransform(new Point(referenceFE.ActualWidth, referenceFE.ActualHeight), out rightBottom);
WindowsFormsIntegration (3)
System\Windows\Integration\HostUtils.cs (3)
248new Point(host.ActualWidth, host.ActualHeight)); 251new Point(frameworkElementAncestor.ActualWidth, frameworkElementAncestor.ActualHeight)); 272(int)Math.Ceiling(element.ActualHeight),