mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-04-12 04:06:36 +08:00
13 lines
297 B
C#
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
|
|
}
|
|
} |