BitmapCache
BitmapCache
BitmapCache
BitmapCache
Class
Definition
Represents the behavior of caching a visual element or tree of elements as bitmap surfaces.
public : sealed class BitmapCache : CacheMode, IBitmapCachepublic sealed class BitmapCache : CacheMode, IBitmapCachePublic NotInheritable Class BitmapCache Inherits CacheMode Implements IBitmapCache// This API is not available in Javascript.
- Inheritance
-
BitmapCacheBitmapCacheBitmapCacheBitmapCache
- Attributes
Windows 10 requirements
| Device family |
Windows 10 (introduced v10.0.10240.0)
|
| API contract |
Windows.Foundation.UniversalApiContract (introduced v1)
|
Inherited Members
Inherited methods
ClearValue(DependencyProperty)ClearValue(DependencyProperty)ClearValue(DependencyProperty)ClearValue(DependencyProperty)
GetAnimationBaseValue(DependencyProperty)GetAnimationBaseValue(DependencyProperty)GetAnimationBaseValue(DependencyProperty)GetAnimationBaseValue(DependencyProperty)
GetValue(DependencyProperty)GetValue(DependencyProperty)GetValue(DependencyProperty)GetValue(DependencyProperty)
ReadLocalValue(DependencyProperty)ReadLocalValue(DependencyProperty)ReadLocalValue(DependencyProperty)ReadLocalValue(DependencyProperty)
RegisterPropertyChangedCallback(DependencyProperty,DependencyPropertyChangedCallback)RegisterPropertyChangedCallback(DependencyProperty,DependencyPropertyChangedCallback)RegisterPropertyChangedCallback(DependencyProperty,DependencyPropertyChangedCallback)RegisterPropertyChangedCallback(DependencyProperty,DependencyPropertyChangedCallback)
Inherited properties
Examples
Use any of these syntax forms to set UIElement.CacheMode to a value other than the null default. Don't do this routinely without testing first, see "Remarks" in UIElement.CacheMode.
<Canvas CacheMode="BitmapCache">
...
</Canvas>
canvas1.CacheMode = new BitmapCache(); //canvas1 is an existing named element in UI
canvas1->CacheMode = ref new BitmapCache(); //canvas1 is an existing named element in UI
Remarks
This class is infrastructure, and provides the underlying run-time value for the behavior when you specify CacheMode="BitmapCache" in XAML markup, or create a new BitmapCache in code to set UIElement.CacheMode.
Constructors
BitmapCache() BitmapCache() BitmapCache() BitmapCache()
Initializes a new instance of the BitmapCache class.
public : BitmapCache()public BitmapCache()Public Sub New()// This API is not available in Javascript.