Skip to main content
A newer version of this page is available. .

LayoutGroup.TabContentCacheMode Property

Gets or sets whether tab contents are cached all at once when the group is displayed, each tab content is cached when the tab is selected, or tab contents are not cached. This is a dependency property.

Namespace: DevExpress.Xpf.Docking

Assembly: DevExpress.Xpf.Docking.v20.2.dll

NuGet Packages: DevExpress.WindowsDesktop.Wpf.Docking, DevExpress.Wpf.Navigation

Declaration

public TabContentCacheMode TabContentCacheMode { get; set; }

Property Value

Type Default Description
TabContentCacheMode None

A TabContentCacheMode enumeration value that specifies how tab contents are cached.

Available values:

Name Description
None

Tabs caching is disabled.

CacheAllTabs

All the DXTabControl‘s tabs are simultaneously cached after the DXTabControl is loaded and shown.

CacheTabsOnSelecting

DXTabControl‘s tabs are cached only after they have been selected by an end-user.

See Also