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