1 override of Frames
PresentationCore (1)
Core\CSharp\System\Windows\Media\Imaging\LateBoundBitmapDecoder.cs (1)
214public override ReadOnlyCollection<BitmapFrame> Frames
15 references to Frames
PresentationCore (8)
Core\CSharp\System\Windows\Media\Imaging\BitmapDecoder.cs (1)
1774decoder.Frames[i] as BitmapFrameDecode
Core\CSharp\System\Windows\Media\Imaging\BitmapFrame.cs (4)
87if (decoder.Frames.Count == 0) 92return decoder.Frames[0]; 104if (decoder.Frames.Count == 0) 109return decoder.Frames[0];
Core\CSharp\System\Windows\Media\Imaging\BitmapImage.cs (2)
397if (decoder.Frames.Count == 0) 402BitmapFrame frame = decoder.Frames[0];
Core\CSharp\System\Windows\Media\Imaging\LateBoundBitmapDecoder.cs (1)
242return Decoder.Frames;
PresentationFramework (7)
src\Framework\MS\Internal\AppModel\IconHelper.cs (2)
128if (bf?.Decoder?.Frames != null) 130bf = GetBestMatch(bf.Decoder.Frames, size);
src\Framework\System\Windows\ColorConvertedBitmapExtension.cs (1)
121BitmapSource bitmap = decoder.Frames[0];
src\Framework\System\Windows\Documents\WpfPayload.cs (4)
670imageBitmap1.Decoder.Frames.Count == 1 && imageBitmap2.Decoder.Frames.Count == 1 && 671imageBitmap1.Decoder.Frames[0] == imageBitmap2.Decoder.Frames[0])