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

17 lines
493 B
C#

using System;
namespace GongSolutions.Wpf.DragDrop
{
public class DropTargetAdorners
{
/// <summary>
/// Gets the type of the default highlight target adorner.
/// </summary>
public static Type Highlight { get; } = typeof(DropTargetHighlightAdorner);
/// <summary>
/// Gets the type of the default insert target adorner.
/// </summary>
public static Type Insert { get; } = typeof(DropTargetInsertionAdorner);
}
}