|
//------------------------------------------------------------------------------
// <copyright file="FormClosedEventHandler.cs" company="Microsoft">
// Copyright (c) Microsoft Corporation. All rights reserved.
// </copyright>
//------------------------------------------------------------------------------
namespace System.Windows.Forms {
/// <include file='doc\FormClosedEventHandler.uex' path='docs/doc[@for="FormClosedEventHandler"]/*' />
/// <devdoc>
/// <para>
/// Represents a method that will handle Form closed event.
/// </para>
/// </devdoc>
public delegate void FormClosedEventHandler(object sender, FormClosedEventArgs e);
}
|