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)
385size = new Size(frameworkElement.ActualWidth, frameworkElement.ActualHeight);
System\Windows\Controls\DataGridColumnDropSeparator.cs (1)
52return separator._referenceHeader.ActualHeight;
System\Windows\Controls\DataGridColumnFloatingHeader.cs (2)
85return header._referenceHeader.ActualHeight + header.GetVisualCanvasMarginY(); 137height = _referenceHeader.ActualHeight;
System\Windows\Controls\DataGridRow.cs (1)
545double newHeight = cellsPresenter.ActualHeight + changeAmount;
System\Windows\Controls\GridSplitter.cs (2)
314else if (ActualWidth <= ActualHeight)// Fall back to Width vs Height 503_resizeData.SplitterLength = Math.Min(ActualWidth, ActualHeight);
System\Windows\Controls\GridViewColumnHeader.cs (2)
794return !((pos.X >= 0) && (pos.X <= ActualWidth) && (pos.Y >= 0) && (pos.Y <= ActualHeight)); 839Viewbox = new Rect(offsetVector.X, offsetVector.Y, FloatSourceHeader.ActualWidth, FloatSourceHeader.ActualHeight)
System\Windows\Controls\GridViewHeaderRowPresenter.cs (1)
1213_floatingHeader.Height = srcHeader.ActualHeight;
System\Windows\Controls\Primitives\ButtonBase.cs (1)
150if ((pos.X >= 0) && (pos.X <= ActualWidth) && (pos.Y >= 0) && (pos.Y <= ActualHeight))
System\Windows\Controls\Primitives\ScrollBar.cs (1)
151_thumbOffset = thumbPoint - new Point(Track.Thumb.ActualWidth * 0.5, Track.Thumb.ActualHeight * 0.5);
System\Windows\Controls\Primitives\TickBar.cs (2)
348Size size = new Size(ActualWidth,ActualHeight); 652yLines.Add(ActualHeight);
System\Windows\Controls\ScrollViewer.cs (4)
890Rect rc = new Rect(0, 0, this.ActualWidth, this.ActualHeight); 1618_panningInfo.DeltaPerVerticalOffset = (DoubleUtil.AreClose(viewportHeight, 0) ? 0 : viewport.ActualHeight / viewportHeight); 1623_panningInfo.DeltaPerVerticalOffset = (DoubleUtil.AreClose(viewportHeight, 0) ? 0 : ActualHeight / viewportHeight); 1662double viewportHeight = viewport.ActualHeight;
System\Windows\Controls\TextBox.cs (1)
1812double chrome = this.ScrollViewer.ActualHeight - ViewportHeight;
System\Windows\Controls\VirtualizingStackPanel.cs (1)
11215double pixelSize = fHorizontal ? ActualWidth : ActualHeight;
System\Windows\Documents\FixedTextView.cs (1)
211designRect = _GetTransformedCaretRect(tran, offset, image.ActualHeight);
System\windows\Documents\TextEditorContextMenu.cs (2)
348if (element.ActualWidth == 0 && element.ActualHeight == 0) 356maxPoint = new Point(element.ActualWidth, element.ActualHeight);
System\Windows\Window.cs (1)
2916Point newSizeDeviceUnits = LogicalToDeviceUnits(new Point(this.ActualWidth, this.ActualHeight));
PresentationFramework.Aero (4)
Microsoft\Windows\Themes\BulletChrome.cs (1)
616Rect bounds = new Rect(0, 0, ActualWidth, ActualHeight);
Microsoft\Windows\Themes\ButtonChrome.cs (1)
470Rect bounds = new Rect(0, 0, ActualWidth, ActualHeight);
Microsoft\Windows\Themes\ListBoxChrome.cs (1)
301Rect bounds = new Rect(0, 0, ActualWidth, ActualHeight);
Microsoft\Windows\Themes\ScrollChrome.cs (1)
416Rect bounds = new Rect(0, 0, ActualWidth, ActualHeight);
PresentationFramework.Aero2 (4)
Microsoft\Windows\Themes\BulletChrome.cs (1)
616Rect bounds = new Rect(0, 0, ActualWidth, ActualHeight);
Microsoft\Windows\Themes\ButtonChrome.cs (1)
470Rect bounds = new Rect(0, 0, ActualWidth, ActualHeight);
Microsoft\Windows\Themes\ListBoxChrome.cs (1)
301Rect bounds = new Rect(0, 0, ActualWidth, ActualHeight);
Microsoft\Windows\Themes\ScrollChrome.cs (1)
416Rect bounds = new Rect(0, 0, ActualWidth, ActualHeight);
PresentationFramework.AeroLite (1)
Microsoft\Windows\Themes\ScrollChrome.cs (1)
160Rect bounds = new Rect(0, 0, ActualWidth, ActualHeight);
PresentationFramework.Classic (1)
Microsoft\Windows\Themes\ClassicBorderDecorator.cs (1)
758Rect bounds = new Rect(0, 0, ActualWidth, ActualHeight);
PresentationFramework.Luna (3)
Microsoft\Windows\Themes\ButtonChrome.cs (1)
511Rect bounds = new Rect(0, 0, ActualWidth, ActualHeight);
Microsoft\Windows\Themes\ScrollChrome.cs (1)
217Rect bounds = new Rect(0, 0, ActualWidth, ActualHeight);
src\Microsoft.DotNet.Wpf\src\Themes\Shared\Microsoft\Windows\Themes\BulletChrome.cs (1)
201Rect bounds = new Rect(0, 0, ActualWidth, ActualHeight);
PresentationFramework.Royale (3)
Microsoft\Windows\Themes\ButtonChrome.cs (1)
432Rect bounds = new Rect(0, 0, ActualWidth, ActualHeight);
Microsoft\Windows\Themes\ScrollChrome.cs (1)
199Rect bounds = new Rect(0, 0, ActualWidth, ActualHeight);
src\Microsoft.DotNet.Wpf\src\Themes\Shared\Microsoft\Windows\Themes\BulletChrome.cs (1)
201Rect 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)
268verticalPosition -= _keyTipControl.ActualHeight; 273verticalPosition -= (_keyTipControl.ActualHeight / 2); 305keyTipBottomY += _keyTipControl.ActualHeight; 306keyTipCenterY += _keyTipControl.ActualHeight / 2; 314else if (DoubleUtil.LessThan(Math.Abs(itemsPresenter.ActualHeight - keyTipBottomY), RibbonGroupKeyTipAxisNudgeSpace)) 317double centerOffsetFromGroupBottom = keyTipCenterY - itemsPresenter.ActualHeight; 334Rect adornerLayerRect = new Rect(0, 0, adornerLayer.ActualWidth, adornerLayer.ActualHeight); 338_keyTipControl.ActualHeight);
Microsoft\Windows\Controls\Ribbon\Primitives\RibbonContextualTabGroupsPanel.cs (5)
131separatorHeight = Ribbon.RibbonTabHeaderItemsControl.InternalItemsHost.ActualHeight - RibbonContextualTabGroup.TabHeaderSeparatorHeightDelta; 145drawingContext.DrawLine(separatorPen, new Point(startX, ActualHeight), new Point(startX, this.ActualHeight + separatorHeight)); 148drawingContext.DrawLine(separatorPen, new Point(startX + tabGroupHeader.TabsDesiredWidth, ActualHeight), new Point(startX + tabGroupHeader.TabsDesiredWidth, this.ActualHeight + separatorHeight));
Microsoft\Windows\Controls\Ribbon\Primitives\RibbonTabHeadersPanel.cs (1)
255drawingContext.DrawLine(separatorPen, new Point(xOffset, 0), new Point(xOffset, this.ActualHeight));
Microsoft\Windows\Controls\Ribbon\Ribbon.cs (2)
1427DoubleUtil.LessThan(window.ActualHeight, CollapseHeight))) 1578Point endPoint = popupPlacementTarget.PointToScreen(new Point(popupPlacementTarget.ActualWidth, popupPlacementTarget.ActualHeight));
Microsoft\Windows\Controls\Ribbon\RibbonDropDownHelper.cs (1)
32itemsPresenter.Height = itemsPresenter.ActualHeight;
Microsoft\Windows\Controls\Ribbon\RibbonGroup.cs (1)
1695e.KeyTipVerticalOffset = groupOrigin.Y + ActualHeight + KeyTipVerticalOffsetDelta;
Microsoft\Windows\Controls\Ribbon\RibbonHelper.cs (2)
817viewportHeight -= prevCategory.HeaderPresenter.ActualHeight; 846viewportHeight -= category.HeaderPresenter.ActualHeight;
Microsoft\Windows\Controls\Ribbon\RibbonTabHeader.cs (3)
296Point leftBottom = new Point(margin.Left + borderThickness.Left, ActualHeight); 297Point rightBottom = new Point(ActualWidth - margin.Right - borderThickness.Right, ActualHeight); 673e.KeyTipVerticalOffset = tabHeaderItemsControlOrigin.Y + tabHeaderOrigin.Y + ActualHeight + KeyTipVerticalOffset;
Microsoft\Windows\Controls\Ribbon\RibbonToolTip.cs (1)
396transformGroup.TryTransform(new Point(referenceFE.ActualWidth, referenceFE.ActualHeight), out rightBottom);
WindowsFormsIntegration (3)
System\Windows\Integration\HostUtils.cs (3)
243new Point(host.ActualWidth, host.ActualHeight)); 246new Point(frameworkElementAncestor.ActualWidth, frameworkElementAncestor.ActualHeight)); 267(int)Math.Ceiling(element.ActualHeight),