/* Based on VirtualizingWrapPanel created by S. Bäumlisberger licensed under MIT license. https://github.com/sbaeumlisberger/VirtualizingWrapPanel Copyright (C) S. Bäumlisberger All Rights Reserved. */ namespace WPFluent.Controls; /// /// Direction of . Based on . /// public enum ScrollDirection { /// /// Vertical scroll direction. /// Vertical, /// /// Horizontal scroll direction. /// Horizontal, }