ItemsUpdatingScrollMode Enum

Definition

Defines constants that specify the scrolling behavior of items while updating.

public enum class ItemsUpdatingScrollMode
/// [Windows.Foundation.Metadata.ContractVersion(Microsoft.UI.Xaml.WinUIContract, 65536)]
enum class ItemsUpdatingScrollMode
[Windows.Foundation.Metadata.ContractVersion(typeof(Microsoft.UI.Xaml.WinUIContract), 65536)]
public enum ItemsUpdatingScrollMode
Public Enum ItemsUpdatingScrollMode
Inheritance
ItemsUpdatingScrollMode
Attributes

Fields

KeepItemsInView 0

Adjusts the scroll offset to keep the first visible item in the viewport when items are added to the ItemsSource.

KeepLastItemInView 2

Adjusts the scroll offset to keep the last visible item in the viewport when items are added to the ItemsSource.

KeepScrollOffset 1

Maintains the scroll offset relative to the beginning of the list, forcing items in the viewport to move down when items are added to the ItemsSource.

Remarks

See ItemsStackPanel.ItemsUpdatingScrollMode for more info.

Applies to

See also