10 references to DelayCreation
PresentationCore (10)
System\Windows\Media\Imaging\BitmapDecoder.cs (2)
1410else if ((_createOptions & BitmapCreateOptions.DelayCreation) == 0 && _cacheOption == BitmapCacheOption.OnLoad) 1465_createOptions |= BitmapCreateOptions.DelayCreation;
System\Windows\Media\Imaging\BitmapFrameDecode.cs (2)
64if ((createOptions & BitmapCreateOptions.DelayCreation) != 0) 104if ((createOptions & BitmapCreateOptions.DelayCreation) != 0)
System\Windows\Media\Imaging\BitmapImage.cs (4)
358CreateOptions & ~BitmapCreateOptions.DelayCreation, 606CachedBitmap cachedSource = new CachedBitmap(source, CreateOptions & ~BitmapCreateOptions.DelayCreation, CacheOption); 706DelayCreation = ((options & BitmapCreateOptions.DelayCreation) != 0); 873if ((CreateOptions & BitmapCreateOptions.DelayCreation) != 0)
System\Windows\Media\Imaging\LateBoundBitmapDecoder.cs (2)
283_createOptions & ~BitmapCreateOptions.DelayCreation, 321if ((_createOptions & BitmapCreateOptions.DelayCreation) == 0)