添加项目文件。

This commit is contained in:
akwkevin
2021-07-23 09:42:22 +08:00
commit f25a958797
2798 changed files with 352360 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
using System.Windows;
namespace GongSolutions.Wpf.DragDrop
{
/// <summary>
/// Interface implemented by Drop Handlers.
/// </summary>
public interface IDropTarget
{
/// <summary>
/// Updates the current drag state.
/// </summary>
///
/// <param name="dropInfo">
/// Information about the drag.
/// </param>
///
/// <remarks>
/// To allow a drop at the current drag position, the <see cref="DropInfo.Effects"/> property on
/// <paramref name="dropInfo"/> should be set to a value other than <see cref="DragDropEffects.None"/>
/// and <see cref="DropInfo.Data"/> should be set to a non-null value.
/// </remarks>
void DragOver(IDropInfo dropInfo);
/// <summary>
/// Performs a drop.
/// </summary>
///
/// <param name="dropInfo">
/// Information about the drop.
/// </param>
void Drop(IDropInfo dropInfo);
}
}