|
//------------------------------------------------------------------------------
// <copyright file="GiveFeedbackEventHandler.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\GiveFeedbackEventHandler.uex' path='docs/doc[@for="GiveFeedbackEventHandler"]/*' />
/// <devdoc>
/// <para>
/// Represents the method that handles the <see cref='System.Windows.Forms.Control.GiveFeedback'/> event
/// of a <see cref='System.Windows.Forms.Control'/>.
/// </para>
/// </devdoc>
public delegate void GiveFeedbackEventHandler(object sender, GiveFeedbackEventArgs e);
}
|