File: src\Framework\System\Windows\Controls\ScrollUnit.cs | |
Project: wpf\PresentationFramework.csproj (PresentationFramework) |
//--------------------------------------------------------------------------- // // Copyright (C) Microsoft Corporation. All rights reserved. // //--------------------------------------------------------------------------- using System; namespace System.Windows.Controls { /// <summary> /// Enumeration that specifies the scrollUnit of the VirtualizingStackPanel. /// Used by <see cref="VirtualizingPanel.ScrollUnitProperty" />. /// </summary> public enum ScrollUnit { Pixel, Item } } |