4 writes to _pixelHeight
PresentationCore (4)
System\Windows\Media\Imaging\BitmapSource.cs (2)
639_pixelHeight = (int)ph; 1499_pixelHeight = sourceBitmap.PixelHeight;
System\Windows\Media\Imaging\RenderTargetBitmap.cs (2)
79_pixelHeight = pixelHeight; 112_pixelHeight = sourceBitmap._pixelHeight;
11 references to _pixelHeight
PresentationCore (11)
System\Windows\Media\Imaging\BitmapSource.cs (1)
198return _pixelHeight;
System\Windows\Media\Imaging\InteropBitmapSource.cs (1)
281dirtyRect.Value.ValidateForDirtyRect("dirtyRect", _pixelWidth, _pixelHeight);
System\Windows\Media\Imaging\RenderTargetBitmap.cs (2)
112_pixelHeight = sourceBitmap._pixelHeight; 261(uint)_pixelHeight,
System\Windows\Media\Imaging\WriteableBitmap.cs (7)
184dirtyRect.ValidateForDirtyRect("dirtyRect", _pixelWidth, _pixelHeight); 272Int32Rect rect = new Int32Rect(0, 0, _pixelWidth, _pixelHeight); 782Int32Rect rcFull = new Int32Rect(0, 0, _pixelWidth, _pixelHeight); 843ArgumentOutOfRangeException.ThrowIfGreaterThan(sourceRect.Height, _pixelHeight, nameof(sourceRect)); 847ArgumentOutOfRangeException.ThrowIfGreaterThan(destinationY, _pixelHeight - sourceRect.Height); 849else if(sourceRect.Width > _pixelWidth || sourceRect.Height > _pixelHeight || destinationX > _pixelWidth - sourceRect.Width || destinationY > _pixelHeight - sourceRect.Height)