File: winforms\Managed\System\WinForms\FormClosingEventHandler.cs
Project: ndp\fx\src\System.Windows.Forms.csproj (System.Windows.Forms)
//------------------------------------------------------------------------------
// <copyright file="FormClosingEventHandler.cs" company="Microsoft">
//     Copyright (c) Microsoft Corporation.  All rights reserved.
// </copyright>                                                                
//------------------------------------------------------------------------------
 
namespace System.Windows.Forms {
 
    /// <include file='doc\FormClosingEventHandler.uex' path='docs/doc[@for="FormClosingEventHandler"]/*' />
    /// <devdoc>
    ///    <para>
    ///       Represents a method that will handle Form Closing event.
    ///    </para>
    /// </devdoc>
    public delegate void FormClosingEventHandler(object sender, FormClosingEventArgs e);
}