Files
aistudio-wpf-diagram/gong-wpf-dragdrop/src/GongSolutions.WPF.DragDrop/ScrollingMode.cs
2021-07-23 09:42:22 +08:00

13 lines
297 B
C#

namespace GongSolutions.Wpf.DragDrop
{
/// <summary>
/// Specifies how <see cref="T:System.Windows.Controls.ScrollViewer" /> reacts to drop operation.
/// </summary>
public enum ScrollingMode
{
None,
HorizontalOnly,
VerticalOnly,
Both
}
}