Files
aistudio-wpf-diagram/gong-wpf-dragdrop/src/GongSolutions.WPF.DragDrop/ScrollingMode.cs

13 lines
297 B
C#
Raw Normal View History

2021-07-23 09:42:22 +08:00
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
}
}