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)
202
return
_pixelWidth
;
Core\CSharp\System\Windows\Media\Imaging\InteropBitmapSource.cs (1)
357
dirtyRect.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)
210
dirtyRect.ValidateForDirtyRect("dirtyRect",
_pixelWidth
, _pixelHeight);
304
Int32Rect rect = new Int32Rect(0, 0,
_pixelWidth
, _pixelHeight);
882
Int32Rect rcFull = new Int32Rect(0, 0,
_pixelWidth
, _pixelHeight);
949
throw new ArgumentOutOfRangeException("sourceRect", SR.Get(SRID.ParameterMustBeBetween, 0,
_pixelWidth
));
952
if (sourceRect.Width >
_pixelWidth
)
960
throw new ArgumentOutOfRangeException("sourceRect", SR.Get(SRID.ParameterMustBeBetween, 0,
_pixelWidth
));
994
if (destinationX >
_pixelWidth
- sourceRect.Width)
1002
throw new ArgumentOutOfRangeException("destinationX", SR.Get(SRID.ParameterMustBeBetween, 0,
_pixelWidth
- sourceRect.Width));