mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-05-03 14:31:28 +08:00
17 lines
493 B
C#
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);
|
|
}
|
|
} |