4 writes to _pixelWidth
PresentationCore (4)
Core\CSharp\System\Windows\Media\Imaging\BitmapSource.cs (2)
692_pixelWidth = (int)pw; 1605_pixelWidth = sourceBitmap.PixelWidth;
Core\CSharp\System\Windows\Media\Imaging\RenderTargetBitmap.cs (2)
93_pixelWidth = pixelWidth; 131_pixelWidth = sourceBitmap._pixelWidth;
12 references to _pixelWidth
PresentationCore (12)
Core\CSharp\System\Windows\Media\Imaging\BitmapSource.cs (1)
202return _pixelWidth;
Core\CSharp\System\Windows\Media\Imaging\InteropBitmapSource.cs (1)
357dirtyRect.Value.ValidateForDirtyRect("dirtyRect", _pixelWidth, _pixelHeight);
Core\CSharp\System\Windows\Media\Imaging\RenderTargetBitmap.cs (2)
131_pixelWidth = sourceBitmap._pixelWidth; 298(uint)_pixelWidth,
Core\CSharp\System\Windows\Media\Imaging\WriteableBitmap.cs (8)
210dirtyRect.ValidateForDirtyRect("dirtyRect", _pixelWidth, _pixelHeight); 304Int32Rect rect = new Int32Rect(0, 0, _pixelWidth, _pixelHeight); 882Int32Rect rcFull = new Int32Rect(0, 0, _pixelWidth, _pixelHeight); 949throw new ArgumentOutOfRangeException("sourceRect", SR.Get(SRID.ParameterMustBeBetween, 0, _pixelWidth)); 952if (sourceRect.Width > _pixelWidth) 960throw new ArgumentOutOfRangeException("sourceRect", SR.Get(SRID.ParameterMustBeBetween, 0, _pixelWidth)); 994if (destinationX > _pixelWidth - sourceRect.Width) 1002throw new ArgumentOutOfRangeException("destinationX", SR.Get(SRID.ParameterMustBeBetween, 0, _pixelWidth - sourceRect.Width));