|
//------------------------------------------------------------------------------
// <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);
}
|