namespace LemonUI.Menus
{
///
/// Represents the method that is called when the selected item is changed on a List Item.
///
/// The type of item that was changed.
/// The source of the event.
/// A with the information of the selected item.
public delegate void ItemChangedEventHandler(object sender, ItemChangedEventArgs e);
}