File: System\Windows\Forms\ItemCheckedEventArgs.cs
Web Access
Project: src\src\System.Windows.Forms\src\System.Windows.Forms.csproj (System.Windows.Forms)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
namespace System.Windows.Forms;
 
/// <summary>
///  Provides data for the <see cref="CheckedListBox.ItemCheck"/> event.
/// </summary>
public class ItemCheckedEventArgs : EventArgs
{
    public ItemCheckedEventArgs(ListViewItem item)
    {
        Item = item.OrThrowIfNull();
    }
 
    /// <summary>
    ///  The index of the item that is about to change.
    /// </summary>
    public ListViewItem Item { get; }
}