Enum TabViewCachingStrategy
public enum TabViewCachingStrategy
- Extension Methods
Fields
CacheOnCodeBehind = 0
The view is removed from the visual tree when a tab is deselected. But instance is kept in memory. And same instance is used when tab is selected again.
CacheOnLayout = 1
The view is kept in the visual tree and visibility is toggled when a tab is selected.
RecreateAlways = 2
No caching. View is removed from the visual tree and a new instance is created when a tab is selected.