3 overrides of Height
PresentationCore (3)
Core\CSharp\System\Windows\Interop\D3DImage.cs (1)
462public sealed override double Height
Core\CSharp\System\Windows\Media\DrawingImage.cs (1)
67public override double Height
Core\CSharp\System\Windows\Media\Imaging\BitmapSource.cs (1)
469public override double Height
10 references to Height
PresentationCore (1)
Core\CSharp\System\Windows\Media\ImageSource.cs (1)
81return new Size(Width, Height);
PresentationFramework (7)
src\Framework\MS\Internal\AppModel\IconHelper.cs (6)
163double aspectRatio = img.Width / img.Height; 166if (img.Width <= renderSize.Width && img.Height <= renderSize.Height) 168drawingDimensions = new Rect((renderSize.Width - img.Width) / 2, (renderSize.Height - img.Height) / 2, img.Width, img.Height); 172double scaledRenderWidth = (img.Width / img.Height) * renderSize.Width; 177double scaledRenderHeight = (img.Height / img.Width) * renderSize.Height;
src\Framework\System\Windows\Documents\FixedElement.cs (1)
311image.Height = image.Source.Height;
System.Activities.Presentation (2)
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\FromExpression\Framework\PropertyInspector\CategoryBase.cs (1)
152double dummyHeight = icon.Height;
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\FromExpression\Framework\PropertyInspector\NewItemFactoryTypeModel.cs (1)
54double dummyHeight = imageSource.Height;