Base:
property
Width
System.Windows.Media.ImageSource.Width
9 references to Width
PresentationFramework (2)
System\Windows\Documents\WpfPayload.cs (1)
269$"<Span xmlns=\"http://schemas.microsoft.com/winfx/2006/xaml/presentation\"><InlineUIContainer><Image Width=\"{bitmapSource.Width}\" Height=\"{bitmapSource.Height}\" ><Image.Source><BitmapImage CacheOption=\"OnLoad\" UriSource=\"{imageReference}\"/></Image.Source></Image></InlineUIContainer></Span>";
System\Windows\Documents\XamlToRtfWriter.cs (1)
2058imageNaturalSize = new Size(bitmapSource.Width, bitmapSource.Height);
PresentationFramework-SystemDrawing (1)
SystemDrawingExtension.cs (1)
163int imageWidth = (int)contentImage.Width;
ReachFramework (6)
AlphaFlattener\DrawingContext.cs (2)
853imageTransform.Scale(dest.Width / image.Image.Width, dest.Height / image.Image.Height); 876double scaleX = dest.Width / image.Image.Width;
AlphaFlattener\Primitive.cs (1)
510ip.DstRect = new Rect(0, 0, bitmap.Width, bitmap.Height);
AlphaFlattener\PrimitiveRenderer.cs (1)
470double imageWidth = ip.Image.Image.Width;
Serialization\DrawingContextFlattener.cs (1)
445_dc.DrawImage(bitmap, new Rect(0, 0, bitmap.Width, bitmap.Height));
Serialization\VisualSerializer.cs (1)
2016Rect rect = new Rect(0, 0, bitmap.Width, bitmap.Height);