|
//------------------------------------------------------------------------------
// <copyright file="TabControlEventHandler.cs" company="Microsoft">
// Copyright (c) Microsoft Corporation. All rights reserved.
// </copyright>
//------------------------------------------------------------------------------
namespace System.Windows.Forms {
using System.Diagnostics;
using System;
/// <include file='doc\TabControlEventHandler.uex' path='docs/doc[@for="TabControlEventHandler"]/*' />
/// <devdoc>
/// <para>
/// Represents the method that handles the
/// <see langword='Select'/>,<see langword='Selecting'/> event of a <see cref='System.Windows.Forms.TabControl'/>
///
/// </para>
/// </devdoc>
public delegate void TabControlEventHandler(object sender, TabControlEventArgs e);
}
|