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