Version

ItemContainerGenerationMode Enumeration

Determines how item containers are generated and cached by the RecyclingItemsPanel.
Syntax
'Declaration
 
Public Enum ItemContainerGenerationMode 
   Inherits System.Enum
public enum ItemContainerGenerationMode : System.Enum 
Members
MemberDescription
LazyLoadGenerates item containers for items as they are scrolled into view and does not clear them for items that get scrolled out of view.
PreLoadPre-generates and caches an item container for each item.
RecycleReuses item containers for items that get scrolled out of view for the items that get scrolled into view.
VirtualizeGenerates item containers for only the items in view and clears item containers for items that subsequently get scrolled out of view.
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also