Files
RAGECOOP-V/RageCoop.Client/LemonUI/Menus/GridValueChangedEventHandler.cs
2022-06-27 13:02:31 +08:00

10 lines
400 B
C#

namespace LemonUI.Menus
{
/// <summary>
/// Represents the method that is called when the value on a grid is changed.
/// </summary>
/// <param name="sender">The source of the event.</param>
/// <param name="e">An <see cref="ItemActivatedArgs"/> with the item information.</param>
public delegate void GridValueChangedEventHandler(object sender, GridValueChangedArgs e);
}