|
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using System;
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
}
} |