10 references to DelayCreation
PresentationCore (10)
System\Windows\Media\Imaging\BitmapDecoder.cs (2)
1392else if ((_createOptions & BitmapCreateOptions.DelayCreation) == 0 && _cacheOption == BitmapCacheOption.OnLoad) 1447_createOptions |= BitmapCreateOptions.DelayCreation;
System\Windows\Media\Imaging\BitmapFrameDecode.cs (2)
49if ((createOptions & BitmapCreateOptions.DelayCreation) != 0) 89if ((createOptions & BitmapCreateOptions.DelayCreation) != 0)
System\Windows\Media\Imaging\BitmapImage.cs (4)
340CreateOptions & ~BitmapCreateOptions.DelayCreation, 588CachedBitmap cachedSource = new CachedBitmap(source, CreateOptions & ~BitmapCreateOptions.DelayCreation, CacheOption); 688DelayCreation = ((options & BitmapCreateOptions.DelayCreation) != 0); 855if ((CreateOptions & BitmapCreateOptions.DelayCreation) != 0)
System\Windows\Media\Imaging\LateBoundBitmapDecoder.cs (2)
263_createOptions & ~BitmapCreateOptions.DelayCreation, 301if ((_createOptions & BitmapCreateOptions.DelayCreation) == 0)