1 override of Frames
PresentationCore (1)
System\Windows\Media\Imaging\LateBoundBitmapDecoder.cs (1)
157public override ReadOnlyCollection<BitmapFrame> Frames
18 references to Frames
PresentationCore (8)
System\Windows\Media\Imaging\BitmapDecoder.cs (1)
1467decoder.Frames[i] as BitmapFrameDecode
System\Windows\Media\Imaging\BitmapFrame.cs (4)
61if (decoder.Frames.Count == 0) 66return decoder.Frames[0]; 78if (decoder.Frames.Count == 0) 83return decoder.Frames[0];
System\Windows\Media\Imaging\BitmapImage.cs (2)
366if (decoder.Frames.Count == 0) 371BitmapFrame frame = decoder.Frames[0];
System\Windows\Media\Imaging\LateBoundBitmapDecoder.cs (1)
185return Decoder.Frames;
PresentationFramework (7)
MS\Internal\AppModel\IconHelper.cs (2)
94if (bf?.Decoder?.Frames != null) 96bf = GetBestMatch(bf.Decoder.Frames, size);
System\Windows\ColorConvertedBitmapExtension.cs (1)
112BitmapSource bitmap = decoder.Frames[0];
System\Windows\Documents\WpfPayload.cs (4)
629imageBitmap1.Decoder.Frames.Count == 1 && imageBitmap2.Decoder.Frames.Count == 1 && 630imageBitmap1.Decoder.Frames[0] == imageBitmap2.Decoder.Frames[0])
System.Windows.Controls.Ribbon (3)
Microsoft\Windows\Controls\Ribbon\Primitives\RibbonWindowSmallIconConverter.cs (3)
60if (bf != null && bf.Decoder != null && bf.Decoder.Frames != null && bf.Decoder.Frames.Count > 0) 62bf = GetBestMatch(bf.Decoder.Frames, size);