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