| File: System\Windows\Controls\VirtualizationMode.cs | Web Access |
| Project: src\wpf\src\Microsoft.DotNet.Wpf\src\PresentationFramework\PresentationFramework.csproj (PresentationFramework) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. namespace System.Windows.Controls { /// <summary> /// Enumeration that specifies the virtualization mode of the VirtualizingPanel. /// Used by <see cref="VirtualizingPanel.VirtualizationModeProperty" />. /// </summary> public enum VirtualizationMode { /// <summary> /// Standard virtualization mode -- containers are thrown away when offscreen. /// </summary> Standard, /// <summary> /// Recycling virtualization mode -- containers are re-used when offscreen. /// </summary> Recycling } }