File: Core\CSharp\System\Windows\QueryContinueDragEventHandler.cs
Project: wpf\src\PresentationCore.csproj (PresentationCore)
//---------------------------------------------------------------------------
//
// File: QueryContinueDragEventHandler.cs
//
// Copyright (C) Microsoft Corporation.  All rights reserved.
// 
// Description: QueryContinueDragEventHandler for QueryContinueDrag event.
// 
// History:  
//  08/19/2004 : sangilj    Created
//
//---------------------------------------------------------------------------
 
using System;
 
namespace System.Windows
{
    /// <summary>
    /// The delegate to use for handlers that receive QueryContinueDragEventArgs.
    /// </summary>
    public delegate void QueryContinueDragEventHandler(object sender, QueryContinueDragEventArgs e);
}