1 override of Frames
PresentationCore (1)
System\Windows\Media\Imaging\LateBoundBitmapDecoder.cs (1)
182
public override ReadOnlyCollection<BitmapFrame>
Frames
18 references to Frames
PresentationCore (8)
System\Windows\Media\Imaging\BitmapDecoder.cs (1)
1496
decoder.
Frames
[i] as BitmapFrameDecode
System\Windows\Media\Imaging\BitmapFrame.cs (4)
83
if (decoder.
Frames
.Count == 0)
88
return decoder.
Frames
[0];
100
if (decoder.
Frames
.Count == 0)
105
return decoder.
Frames
[0];
System\Windows\Media\Imaging\BitmapImage.cs (2)
385
if (decoder.
Frames
.Count == 0)
390
BitmapFrame frame = decoder.
Frames
[0];
System\Windows\Media\Imaging\LateBoundBitmapDecoder.cs (1)
210
return Decoder.
Frames
;
PresentationFramework (7)
MS\Internal\AppModel\IconHelper.cs (2)
103
if (bf?.Decoder?.
Frames
!= null)
105
bf = GetBestMatch(bf.Decoder.
Frames
, size);
System\Windows\ColorConvertedBitmapExtension.cs (1)
120
BitmapSource bitmap = decoder.
Frames
[0];
System\Windows\Documents\WpfPayload.cs (4)
634
imageBitmap1.Decoder.
Frames
.Count == 1 && imageBitmap2.Decoder.
Frames
.Count == 1 &&
635
imageBitmap1.Decoder.
Frames
[0] == imageBitmap2.Decoder.
Frames
[0])
System.Windows.Controls.Ribbon (3)
Microsoft\Windows\Controls\Ribbon\Primitives\RibbonWindowSmallIconConverter.cs (3)
63
if (bf != null && bf.Decoder != null && bf.Decoder.
Frames
!= null && bf.Decoder.
Frames
.Count > 0)
65
bf = GetBestMatch(bf.Decoder.
Frames
, size);