DotNet 4.8.1 build of DotNetBar

This commit is contained in:
2025-02-07 10:35:23 -05:00
parent 33439b63a0
commit 6b0a5d60f4
2609 changed files with 989814 additions and 7 deletions

View File

@@ -0,0 +1,33 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace DevComponents.DotNetBar
{
public class ListBoxAdvItemCheckEventArgs : EventArgs
{
/// <summary>
/// Indicates that CheckState change of the item should be canceled.
/// </summary>
public bool Cancel = false;
/// <summary>
/// Specifies the ListBoxItem that was changing.
/// </summary>
public readonly ListBoxItem Item;
/// <summary>
/// When data-bound provides the object which was used to generate an ListBoxItem.
/// </summary>
public readonly object Value;
/// <summary>
/// Initializes a new instance of the ListBoxAdvItemCheckEventArgs class.
/// </summary>
/// <param name="item"></param>
/// <param name="value"></param>
public ListBoxAdvItemCheckEventArgs(ListBoxItem item, object value)
{
Item = item;
Value = value;
}
}
}