10 references to DelayCreation
PresentationCore (10)
System\Windows\Media\Imaging\BitmapDecoder.cs (2)
1381else if ((_createOptions & BitmapCreateOptions.DelayCreation) == 0 && _cacheOption == BitmapCacheOption.OnLoad) 1436_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)
339CreateOptions & ~BitmapCreateOptions.DelayCreation, 587CachedBitmap cachedSource = new CachedBitmap(source, CreateOptions & ~BitmapCreateOptions.DelayCreation, CacheOption); 687DelayCreation = ((options & BitmapCreateOptions.DelayCreation) != 0); 854if ((CreateOptions & BitmapCreateOptions.DelayCreation) != 0)
System\Windows\Media\Imaging\LateBoundBitmapDecoder.cs (2)
258_createOptions & ~BitmapCreateOptions.DelayCreation, 296if ((_createOptions & BitmapCreateOptions.DelayCreation) == 0)