RAGECOOP-V/RageCoop.Client/LemonUI/Menus/ItemChangedEventHandler.cs

11 lines
510 B
C#
Raw Normal View History

2022-06-27 13:02:31 +08:00
namespace LemonUI.Menus
{
/// <summary>
/// Represents the method that is called when the selected item is changed on a List Item.
/// </summary>
/// <typeparam name="T">The type of item that was changed.</typeparam>
/// <param name="sender">The source of the event.</param>
/// <param name="e">A <see cref="ItemChangedEventArgs{T}"/> with the information of the selected item.</param>
public delegate void ItemChangedEventHandler<T>(object sender, ItemChangedEventArgs<T> e);
}