File: winforms\Managed\System\WinForms\TabControlCancelEventHandler.cs
Project: ndp\fx\src\System.Windows.Forms.csproj (System.Windows.Forms)
//------------------------------------------------------------------------------
// <copyright file="TabControlCancelEventHandler.cs" company="Microsoft">
//     Copyright (c) Microsoft Corporation.  All rights reserved.
// </copyright>                                                                
//------------------------------------------------------------------------------
 
namespace System.Windows.Forms {
 
    using System.Diagnostics;
 
    using System;
 
 
    /// <include file='doc\TabControlCancelEventHandler.uex' path='docs/doc[@for="TabControlCancelEventHandler"]/*' />
    /// <devdoc>
    ///    <para>
    ///       Represents the method that handles the
    ///    <see langword='Deselect'/>,<see langword='Deselecting'/> event of a <see cref='System.Windows.Forms.TabControl'/>
    ///       
    ///    </para>
    /// </devdoc>
    public delegate void TabControlCancelEventHandler(object sender, TabControlCancelEventArgs e);
}