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