10 references to DelayCreation
PresentationCore (10)
System\Windows\Media\Imaging\BitmapDecoder.cs (2)
1393else if ((_createOptions & BitmapCreateOptions.DelayCreation) == 0 && _cacheOption == BitmapCacheOption.OnLoad) 1448_createOptions |= BitmapCreateOptions.DelayCreation;
System\Windows\Media\Imaging\BitmapFrameDecode.cs (2)
43if ((createOptions & BitmapCreateOptions.DelayCreation) != 0) 83if ((createOptions & BitmapCreateOptions.DelayCreation) != 0)
System\Windows\Media\Imaging\BitmapImage.cs (4)
352CreateOptions & ~BitmapCreateOptions.DelayCreation, 600CachedBitmap cachedSource = new CachedBitmap(source, CreateOptions & ~BitmapCreateOptions.DelayCreation, CacheOption); 700DelayCreation = ((options & BitmapCreateOptions.DelayCreation) != 0); 867if ((CreateOptions & BitmapCreateOptions.DelayCreation) != 0)
System\Windows\Media\Imaging\LateBoundBitmapDecoder.cs (2)
263_createOptions & ~BitmapCreateOptions.DelayCreation, 301if ((_createOptions & BitmapCreateOptions.DelayCreation) == 0)