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)
386size = new Size(frameworkElement.ActualWidth, frameworkElement.ActualHeight);
System\Windows\Controls\DataGridColumnDropSeparator.cs (1)
53return separator._referenceHeader.ActualHeight;
System\Windows\Controls\DataGridColumnFloatingHeader.cs (2)
86return header._referenceHeader.ActualHeight + header.GetVisualCanvasMarginY(); 137height = _referenceHeader.ActualHeight;
System\Windows\Controls\DataGridRow.cs (1)
546double newHeight = cellsPresenter.ActualHeight + changeAmount;
System\Windows\Controls\GridSplitter.cs (2)
315else if (ActualWidth <= ActualHeight)// Fall back to Width vs Height 498_resizeData.SplitterLength = Math.Min(ActualWidth, ActualHeight);
System\Windows\Controls\GridViewColumnHeader.cs (2)
804return !((pos.X >= 0) && (pos.X <= ActualWidth) && (pos.Y >= 0) && (pos.Y <= ActualHeight)); 850visualBrush.Viewbox = new Rect(offsetVector.X, offsetVector.Y, FloatSourceHeader.ActualWidth, FloatSourceHeader.ActualHeight);
System\Windows\Controls\GridViewHeaderRowPresenter.cs (1)
1209_floatingHeader.Height = srcHeader.ActualHeight;
System\Windows\Controls\Primitives\ButtonBase.cs (1)
151if ((pos.X >= 0) && (pos.X <= ActualWidth) && (pos.Y >= 0) && (pos.Y <= ActualHeight))
System\Windows\Controls\Primitives\ScrollBar.cs (1)
152_thumbOffset = thumbPoint - new Point(Track.Thumb.ActualWidth * 0.5, Track.Thumb.ActualHeight * 0.5);
System\Windows\Controls\Primitives\TickBar.cs (2)
349Size size = new Size(ActualWidth,ActualHeight); 653yLines.Add(ActualHeight);
System\Windows\Controls\ScrollViewer.cs (4)
891Rect rc = new Rect(0, 0, this.ActualWidth, this.ActualHeight); 1620_panningInfo.DeltaPerVerticalOffset = (DoubleUtil.AreClose(viewportHeight, 0) ? 0 : viewport.ActualHeight / viewportHeight); 1625_panningInfo.DeltaPerVerticalOffset = (DoubleUtil.AreClose(viewportHeight, 0) ? 0 : ActualHeight / viewportHeight); 1664double viewportHeight = viewport.ActualHeight;
System\Windows\Controls\TextBox.cs (1)
1811double chrome = this.ScrollViewer.ActualHeight - ViewportHeight;
System\Windows\Controls\VirtualizingStackPanel.cs (1)
11238double pixelSize = fHorizontal ? ActualWidth : ActualHeight;
System\Windows\Documents\FixedTextView.cs (1)
216designRect = _GetTransformedCaretRect(tran, offset, image.ActualHeight);
System\windows\Documents\TextEditorContextMenu.cs (2)
349if (element.ActualWidth == 0 && element.ActualHeight == 0) 357maxPoint = new Point(element.ActualWidth, element.ActualHeight);
System\Windows\Window.cs (1)
2931Point newSizeDeviceUnits = LogicalToDeviceUnits(new Point(this.ActualWidth, this.ActualHeight));
PresentationFramework.Aero (4)
Microsoft\Windows\Themes\BulletChrome.cs (1)
603Rect bounds = new Rect(0, 0, ActualWidth, ActualHeight);
Microsoft\Windows\Themes\ButtonChrome.cs (1)
463Rect bounds = new Rect(0, 0, ActualWidth, ActualHeight);
Microsoft\Windows\Themes\ListBoxChrome.cs (1)
303Rect bounds = new Rect(0, 0, ActualWidth, ActualHeight);
Microsoft\Windows\Themes\ScrollChrome.cs (1)
409Rect bounds = new Rect(0, 0, ActualWidth, ActualHeight);
PresentationFramework.Aero2 (4)
Microsoft\Windows\Themes\BulletChrome.cs (1)
603Rect bounds = new Rect(0, 0, ActualWidth, ActualHeight);
Microsoft\Windows\Themes\ButtonChrome.cs (1)
463Rect bounds = new Rect(0, 0, ActualWidth, ActualHeight);
Microsoft\Windows\Themes\ListBoxChrome.cs (1)
303Rect bounds = new Rect(0, 0, ActualWidth, ActualHeight);
Microsoft\Windows\Themes\ScrollChrome.cs (1)
409Rect bounds = new Rect(0, 0, ActualWidth, ActualHeight);
PresentationFramework.AeroLite (1)
Microsoft\Windows\Themes\ScrollChrome.cs (1)
161Rect bounds = new Rect(0, 0, ActualWidth, ActualHeight);
PresentationFramework.Classic (1)
Microsoft\Windows\Themes\ClassicBorderDecorator.cs (1)
757Rect bounds = new Rect(0, 0, ActualWidth, ActualHeight);
PresentationFramework.Luna (3)
Microsoft\Windows\Themes\ButtonChrome.cs (1)
514Rect bounds = new Rect(0, 0, ActualWidth, ActualHeight);
Microsoft\Windows\Themes\ScrollChrome.cs (1)
218Rect bounds = new Rect(0, 0, ActualWidth, ActualHeight);
src\Microsoft.DotNet.Wpf\src\Themes\Shared\Microsoft\Windows\Themes\BulletChrome.cs (1)
204Rect bounds = new Rect(0, 0, ActualWidth, ActualHeight);
PresentationFramework.Royale (3)
Microsoft\Windows\Themes\ButtonChrome.cs (1)
435Rect bounds = new Rect(0, 0, ActualWidth, ActualHeight);
Microsoft\Windows\Themes\ScrollChrome.cs (1)
200Rect bounds = new Rect(0, 0, ActualWidth, ActualHeight);
src\Microsoft.DotNet.Wpf\src\Themes\Shared\Microsoft\Windows\Themes\BulletChrome.cs (1)
204Rect 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)
272verticalPosition -= _keyTipControl.ActualHeight; 277verticalPosition -= (_keyTipControl.ActualHeight / 2); 309keyTipBottomY += _keyTipControl.ActualHeight; 310keyTipCenterY += _keyTipControl.ActualHeight / 2; 318else if (DoubleUtil.LessThan(Math.Abs(itemsPresenter.ActualHeight - keyTipBottomY), RibbonGroupKeyTipAxisNudgeSpace)) 321double centerOffsetFromGroupBottom = keyTipCenterY - itemsPresenter.ActualHeight; 338Rect adornerLayerRect = new Rect(0, 0, adornerLayer.ActualWidth, adornerLayer.ActualHeight); 342_keyTipControl.ActualHeight);
Microsoft\Windows\Controls\Ribbon\Primitives\RibbonContextualTabGroupsPanel.cs (5)
135separatorHeight = Ribbon.RibbonTabHeaderItemsControl.InternalItemsHost.ActualHeight - RibbonContextualTabGroup.TabHeaderSeparatorHeightDelta; 149drawingContext.DrawLine(separatorPen, new Point(startX, ActualHeight), new Point(startX, this.ActualHeight + separatorHeight)); 152drawingContext.DrawLine(separatorPen, new Point(startX + tabGroupHeader.TabsDesiredWidth, ActualHeight), new Point(startX + tabGroupHeader.TabsDesiredWidth, this.ActualHeight + separatorHeight));
Microsoft\Windows\Controls\Ribbon\Primitives\RibbonTabHeadersPanel.cs (1)
256drawingContext.DrawLine(separatorPen, new Point(xOffset, 0), new Point(xOffset, this.ActualHeight));
Microsoft\Windows\Controls\Ribbon\Ribbon.cs (2)
1443DoubleUtil.LessThan(window.ActualHeight, CollapseHeight))) 1600Point endPoint = popupPlacementTarget.PointToScreen(new Point(popupPlacementTarget.ActualWidth, popupPlacementTarget.ActualHeight));
Microsoft\Windows\Controls\Ribbon\RibbonDropDownHelper.cs (1)
33itemsPresenter.Height = itemsPresenter.ActualHeight;
Microsoft\Windows\Controls\Ribbon\RibbonGroup.cs (1)
1705e.KeyTipVerticalOffset = groupOrigin.Y + ActualHeight + KeyTipVerticalOffsetDelta;
Microsoft\Windows\Controls\Ribbon\RibbonHelper.cs (2)
814viewportHeight -= prevCategory.HeaderPresenter.ActualHeight; 843viewportHeight -= category.HeaderPresenter.ActualHeight;
Microsoft\Windows\Controls\Ribbon\RibbonTabHeader.cs (3)
297Point leftBottom = new Point(margin.Left + borderThickness.Left, ActualHeight); 298Point rightBottom = new Point(ActualWidth - margin.Right - borderThickness.Right, ActualHeight); 677e.KeyTipVerticalOffset = tabHeaderItemsControlOrigin.Y + tabHeaderOrigin.Y + ActualHeight + KeyTipVerticalOffset;
Microsoft\Windows\Controls\Ribbon\RibbonToolTip.cs (1)
397transformGroup.TryTransform(new Point(referenceFE.ActualWidth, referenceFE.ActualHeight), out rightBottom);
WindowsFormsIntegration (3)
System\Windows\Integration\HostUtils.cs (3)
244new Point(host.ActualWidth, host.ActualHeight)); 247new Point(frameworkElementAncestor.ActualWidth, frameworkElementAncestor.ActualHeight)); 268(int)Math.Ceiling(element.ActualHeight),