60 references to ActualHeight
PresentationFramework (24)
src\Framework\MS\Internal\Ink\InkCanvasSelection.cs (1)
408size = new Size(frameworkElement.ActualWidth, frameworkElement.ActualHeight);
src\Framework\System\Windows\Controls\DataGridColumnDropSeparator.cs (1)
58return separator._referenceHeader.ActualHeight;
src\Framework\System\Windows\Controls\DataGridColumnFloatingHeader.cs (2)
91return header._referenceHeader.ActualHeight + header.GetVisualCanvasMarginY(); 142height = _referenceHeader.ActualHeight;
src\Framework\System\Windows\Controls\DataGridRow.cs (1)
551double newHeight = cellsPresenter.ActualHeight + changeAmount;
src\Framework\System\Windows\Controls\GridSplitter.cs (2)
322else if (ActualWidth <= ActualHeight)// Fall back to Width vs Height 506_resizeData.SplitterLength = Math.Min(ActualWidth, ActualHeight);
src\Framework\System\Windows\Controls\GridViewColumnHeader.cs (2)
841return !((pos.X >= 0) && (pos.X <= ActualWidth) && (pos.Y >= 0) && (pos.Y <= ActualHeight)); 887visualBrush.Viewbox = new Rect(offsetVector.X, offsetVector.Y, FloatSourceHeader.ActualWidth, FloatSourceHeader.ActualHeight);
src\Framework\System\Windows\Controls\GridViewHeaderRowPresenter.cs (1)
1215_floatingHeader.Height = srcHeader.ActualHeight;
src\Framework\System\Windows\Controls\Primitives\ButtonBase.cs (1)
159if ((pos.X >= 0) && (pos.X <= ActualWidth) && (pos.Y >= 0) && (pos.Y <= ActualHeight))
src\Framework\System\Windows\Controls\Primitives\ScrollBar.cs (1)
170_thumbOffset = thumbPoint - new Point(Track.Thumb.ActualWidth * 0.5, Track.Thumb.ActualHeight * 0.5);
src\Framework\System\Windows\Controls\Primitives\TickBar.cs (2)
364Size size = new Size(ActualWidth,ActualHeight); 668yLines.Add(ActualHeight);
src\Framework\System\Windows\Controls\ScrollViewer.cs (4)
926Rect rc = new Rect(0, 0, this.ActualWidth, this.ActualHeight); 1674_panningInfo.DeltaPerVerticalOffset = (DoubleUtil.AreClose(viewportHeight, 0) ? 0 : viewport.ActualHeight / viewportHeight); 1679_panningInfo.DeltaPerVerticalOffset = (DoubleUtil.AreClose(viewportHeight, 0) ? 0 : ActualHeight / viewportHeight); 1718double viewportHeight = viewport.ActualHeight;
src\Framework\System\Windows\Controls\TextBox.cs (1)
1811double chrome = this.ScrollViewer.ActualHeight - ViewportHeight;
src\Framework\System\Windows\Controls\VirtualizingStackPanel.cs (1)
11105double pixelSize = fHorizontal ? ActualWidth : ActualHeight;
src\Framework\System\Windows\Documents\FixedTextView.cs (1)
232designRect = _GetTransformedCaretRect(tran, offset, image.ActualHeight);
src\Framework\System\windows\Documents\TextEditorContextMenu.cs (2)
373if (element.ActualWidth == 0 && element.ActualHeight == 0) 381maxPoint = new Point(element.ActualWidth, element.ActualHeight);
src\Framework\System\Windows\Window.cs (1)
2999Point newSizeDeviceUnits = LogicalToDeviceUnits(new Point(this.ActualWidth, this.ActualHeight));
PresentationFramework.Aero (4)
Microsoft\Windows\Themes\BulletChrome.cs (1)
615Rect bounds = new Rect(0, 0, ActualWidth, ActualHeight);
Microsoft\Windows\Themes\ButtonChrome.cs (1)
478Rect bounds = new Rect(0, 0, ActualWidth, ActualHeight);
Microsoft\Windows\Themes\ListBoxChrome.cs (1)
315Rect bounds = new Rect(0, 0, ActualWidth, ActualHeight);
Microsoft\Windows\Themes\ScrollChrome.cs (1)
420Rect bounds = new Rect(0, 0, ActualWidth, ActualHeight);
PresentationFramework.Classic (1)
Microsoft\Windows\Themes\ClassicBorderDecorator.cs (1)
765Rect bounds = new Rect(0, 0, ActualWidth, ActualHeight);
PresentationFramework.Luna (3)
Microsoft\Windows\Themes\ButtonChrome.cs (1)
525Rect bounds = new Rect(0, 0, ActualWidth, ActualHeight);
Microsoft\Windows\Themes\ScrollChrome.cs (1)
228Rect bounds = new Rect(0, 0, ActualWidth, ActualHeight);
parent\Shared\Microsoft\Windows\Themes\BulletChrome.cs (1)
213Rect bounds = new Rect(0, 0, ActualWidth, ActualHeight);
PresentationFramework.Royale (3)
Microsoft\Windows\Themes\ButtonChrome.cs (1)
446Rect bounds = new Rect(0, 0, ActualWidth, ActualHeight);
Microsoft\Windows\Themes\ScrollChrome.cs (1)
210Rect bounds = new Rect(0, 0, ActualWidth, ActualHeight);
parent\Shared\Microsoft\Windows\Themes\BulletChrome.cs (1)
213Rect bounds = new Rect(0, 0, ActualWidth, ActualHeight);
System.Activities.Presentation (25)
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\FromExpression\Framework\ValueEditors\ChoiceEditor.cs (1)
896Rect fullRect = new Rect(0d, 0d, this.ActualWidth, this.ActualHeight);
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\FromExpression\Framework\ValueEditors\StringEditor.cs (1)
287RenderUtils.DrawInscribedRoundedRect(drawingContext, this.Background, strokePen, new Rect(0d, 0d, this.ActualWidth, this.ActualHeight), this.CornerRadius);
System.Activities.Presentation\System\Activities\Presentation\MiniMap\MiniMapControl.xaml.cs (3)
310get { return this.contentGrid.ActualHeight - 2 * (this.contentGrid.RowDefinitions[0].MinHeight); } 469double height = this.contentGrid.ActualHeight; 509System.Diagnostics.Debug.WriteLine(string.Format(CultureInfo.InvariantCulture, "{0} ScrollViewer: EWidth {1}, EHeight {2}, AWidth {3}, AHeight {4}, ViewPortW {5} ViewPortH {6}", prefix, mapSource.ExtentWidth, mapSource.ExtentHeight, mapSource.ActualWidth, mapSource.ActualHeight, mapSource.ViewportWidth, mapSource.ViewportHeight));
System.Activities.Presentation\System\Activities\Presentation\View\AutoScrollHelper.cs (2)
50double scrollViewerHeight = scrollViewer.ActualHeight; 57logicalViewHeight = logicalView.ActualHeight;
System.Activities.Presentation\System\Activities\Presentation\View\ExtensionSurface.cs (8)
248calculatedPosition = transform.Transform(new Point(0.0, target.ActualHeight)); 256calculatedPosition = transform.Transform(new Point(target.ActualWidth, target.ActualHeight)); 262y = ((target.ActualHeight * transform.Matrix.M22) - window.Height) / 2.0; 274y = ((target.ActualHeight * transform.Matrix.M22) - window.Height) / 2.0; 309position.Y = CalculateInBoundsValue(position.Y, window.DesiredSize.Height, this.ActualHeight, this.selectedChild.Value.Y); 358if (IsGreater(pos.Y, size.Height, this.ActualHeight)) 360size.Height = this.ActualHeight - pos.Y; 448this.rearangeStartSize.Height = this.ActualHeight;
System.Activities.Presentation\System\Activities\Presentation\View\ExtensionWindow.cs (3)
335else if (position.X <= BorderOffset && position.Y >= this.border.ActualHeight - BorderOffset) 340else if (position.X >= this.border.ActualWidth - BorderOffset && position.Y >= this.border.ActualHeight - BorderOffset) 350else if (position.Y >= this.border.ActualHeight - (BorderOffset / 2.0))
System.Activities.Presentation\System\Activities\Presentation\View\RubberBandSelector.cs (2)
202Point bottomRight = transform.Transform(new Point(view.DragHandle.ActualWidth, view.DragHandle.ActualHeight)); 274Rect rect = new Rect(location.X, location.Y, view.ActualWidth, view.ActualHeight);
System.Activities.Presentation\System\Activities\Presentation\View\VirtualizedContainerService.cs (3)
396if (this.ActualHeight > 0 && this.ActualWidth > 0) 398Rect bounds = new Rect(currentPoint, new Size(this.ActualWidth, this.ActualHeight)); 405bounds = new Rect(currentPoint, new Size(this.ActualWidth, this.ActualHeight));
System.Activities.Presentation\System\Activities\Presentation\View\VisualBasicEditor.xaml.cs (1)
432this.blockHeight = textBlock.ActualHeight;
System.Activities.Presentation\System\Activities\Presentation\WorkflowViewElement.cs (1)
800Rect dragHandleRect = new Rect(dragHandleLocation, new Size(this.DragHandle.ActualWidth, this.DragHandle.ActualHeight));