60 references to ActualHeight
PresentationFramework (24)
src\Framework\MS\Internal\Ink\InkCanvasSelection.cs (1)
408
size = new Size(frameworkElement.ActualWidth, frameworkElement.
ActualHeight
);
src\Framework\System\Windows\Controls\DataGridColumnDropSeparator.cs (1)
58
return separator._referenceHeader.
ActualHeight
;
src\Framework\System\Windows\Controls\DataGridColumnFloatingHeader.cs (2)
91
return header._referenceHeader.
ActualHeight
+ header.GetVisualCanvasMarginY();
142
height = _referenceHeader.
ActualHeight
;
src\Framework\System\Windows\Controls\DataGridRow.cs (1)
551
double newHeight = cellsPresenter.
ActualHeight
+ changeAmount;
src\Framework\System\Windows\Controls\GridSplitter.cs (2)
322
else if (ActualWidth <=
ActualHeight
)// Fall back to Width vs Height
506
_resizeData.SplitterLength = Math.Min(ActualWidth,
ActualHeight
);
src\Framework\System\Windows\Controls\GridViewColumnHeader.cs (2)
841
return !((pos.X >= 0) && (pos.X <= ActualWidth) && (pos.Y >= 0) && (pos.Y <=
ActualHeight
));
887
visualBrush.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)
159
if ((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)
364
Size size = new Size(ActualWidth,
ActualHeight
);
668
yLines.Add(
ActualHeight
);
src\Framework\System\Windows\Controls\ScrollViewer.cs (4)
926
Rect 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);
1718
double viewportHeight = viewport.
ActualHeight
;
src\Framework\System\Windows\Controls\TextBox.cs (1)
1811
double chrome = this.ScrollViewer.
ActualHeight
- ViewportHeight;
src\Framework\System\Windows\Controls\VirtualizingStackPanel.cs (1)
11105
double pixelSize = fHorizontal ? ActualWidth :
ActualHeight
;
src\Framework\System\Windows\Documents\FixedTextView.cs (1)
232
designRect = _GetTransformedCaretRect(tran, offset, image.
ActualHeight
);
src\Framework\System\windows\Documents\TextEditorContextMenu.cs (2)
373
if (element.ActualWidth == 0 && element.
ActualHeight
== 0)
381
maxPoint = new Point(element.ActualWidth, element.
ActualHeight
);
src\Framework\System\Windows\Window.cs (1)
2999
Point newSizeDeviceUnits = LogicalToDeviceUnits(new Point(this.ActualWidth, this.
ActualHeight
));
PresentationFramework.Aero (4)
Microsoft\Windows\Themes\BulletChrome.cs (1)
615
Rect bounds = new Rect(0, 0, ActualWidth,
ActualHeight
);
Microsoft\Windows\Themes\ButtonChrome.cs (1)
478
Rect bounds = new Rect(0, 0, ActualWidth,
ActualHeight
);
Microsoft\Windows\Themes\ListBoxChrome.cs (1)
315
Rect bounds = new Rect(0, 0, ActualWidth,
ActualHeight
);
Microsoft\Windows\Themes\ScrollChrome.cs (1)
420
Rect bounds = new Rect(0, 0, ActualWidth,
ActualHeight
);
PresentationFramework.Classic (1)
Microsoft\Windows\Themes\ClassicBorderDecorator.cs (1)
765
Rect bounds = new Rect(0, 0, ActualWidth,
ActualHeight
);
PresentationFramework.Luna (3)
Microsoft\Windows\Themes\ButtonChrome.cs (1)
525
Rect bounds = new Rect(0, 0, ActualWidth,
ActualHeight
);
Microsoft\Windows\Themes\ScrollChrome.cs (1)
228
Rect bounds = new Rect(0, 0, ActualWidth,
ActualHeight
);
parent\Shared\Microsoft\Windows\Themes\BulletChrome.cs (1)
213
Rect bounds = new Rect(0, 0, ActualWidth,
ActualHeight
);
PresentationFramework.Royale (3)
Microsoft\Windows\Themes\ButtonChrome.cs (1)
446
Rect bounds = new Rect(0, 0, ActualWidth,
ActualHeight
);
Microsoft\Windows\Themes\ScrollChrome.cs (1)
210
Rect bounds = new Rect(0, 0, ActualWidth,
ActualHeight
);
parent\Shared\Microsoft\Windows\Themes\BulletChrome.cs (1)
213
Rect 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)
896
Rect 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)
287
RenderUtils.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)
310
get { return this.contentGrid.
ActualHeight
- 2 * (this.contentGrid.RowDefinitions[0].MinHeight); }
469
double height = this.contentGrid.
ActualHeight
;
509
System.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)
50
double scrollViewerHeight = scrollViewer.
ActualHeight
;
57
logicalViewHeight = logicalView.
ActualHeight
;
System.Activities.Presentation\System\Activities\Presentation\View\ExtensionSurface.cs (8)
248
calculatedPosition = transform.Transform(new Point(0.0, target.
ActualHeight
));
256
calculatedPosition = transform.Transform(new Point(target.ActualWidth, target.
ActualHeight
));
262
y = ((target.
ActualHeight
* transform.Matrix.M22) - window.Height) / 2.0;
274
y = ((target.
ActualHeight
* transform.Matrix.M22) - window.Height) / 2.0;
309
position.Y = CalculateInBoundsValue(position.Y, window.DesiredSize.Height, this.
ActualHeight
, this.selectedChild.Value.Y);
358
if (IsGreater(pos.Y, size.Height, this.
ActualHeight
))
360
size.Height = this.
ActualHeight
- pos.Y;
448
this.rearangeStartSize.Height = this.
ActualHeight
;
System.Activities.Presentation\System\Activities\Presentation\View\ExtensionWindow.cs (3)
335
else if (position.X <= BorderOffset && position.Y >= this.border.
ActualHeight
- BorderOffset)
340
else if (position.X >= this.border.ActualWidth - BorderOffset && position.Y >= this.border.
ActualHeight
- BorderOffset)
350
else if (position.Y >= this.border.
ActualHeight
- (BorderOffset / 2.0))
System.Activities.Presentation\System\Activities\Presentation\View\RubberBandSelector.cs (2)
202
Point bottomRight = transform.Transform(new Point(view.DragHandle.ActualWidth, view.DragHandle.
ActualHeight
));
274
Rect rect = new Rect(location.X, location.Y, view.ActualWidth, view.
ActualHeight
);
System.Activities.Presentation\System\Activities\Presentation\View\VirtualizedContainerService.cs (3)
396
if (this.
ActualHeight
> 0 && this.ActualWidth > 0)
398
Rect bounds = new Rect(currentPoint, new Size(this.ActualWidth, this.
ActualHeight
));
405
bounds = new Rect(currentPoint, new Size(this.ActualWidth, this.
ActualHeight
));
System.Activities.Presentation\System\Activities\Presentation\View\VisualBasicEditor.xaml.cs (1)
432
this.blockHeight = textBlock.
ActualHeight
;
System.Activities.Presentation\System\Activities\Presentation\WorkflowViewElement.cs (1)
800
Rect dragHandleRect = new Rect(dragHandleLocation, new Size(this.DragHandle.ActualWidth, this.DragHandle.
ActualHeight
));