|
//------------------------------------------------------------------------------
// <copyright file="QueryContinueDragEventHandler.cs" company="Microsoft">
// Copyright (c) Microsoft Corporation. All rights reserved.
// </copyright>
//------------------------------------------------------------------------------
namespace System.Windows.Forms {
using System.Diagnostics;
using System;
using System.Drawing;
/// <include file='doc\QueryContinueDragEventHandler.uex' path='docs/doc[@for="QueryContinueDragEventHandler"]/*' />
/// <devdoc>
/// <para>
/// Represents the method that will handle the <see cref='System.Windows.Forms.Control.QueryContinueDrag'/>
/// event of a
/// <see cref='System.Windows.Forms.Control'/>.
/// </para>
/// </devdoc>
public delegate void QueryContinueDragEventHandler(object sender, QueryContinueDragEventArgs e);
}
|