Show / Hide Table of Contents

Delegate ItemChangedEventHandler<T>

Represents the method that is called when the selected item is changed on a List Item.

Namespace: LemonUI.Menus
Assembly: LemonUI.SHVDN3.dll
Syntax
public delegate void ItemChangedEventHandler<T>(object sender, ItemChangedEventArgs<T> e)
Parameters
Type Name Description
object sender

The source of the event.

ItemChangedEventArgs<T> e

A ItemChangedEventArgs<T> with the information of the selected item.

Type Parameters
Name Description
T

The type of item that was changed.

Constructors

View Source

ItemChangedEventHandler(object, nint)

Declaration
public ItemChangedEventHandler(object @object, nint method)
Parameters
Type Name Description
object object
nint method

Methods

View Source

BeginInvoke(object, ItemChangedEventArgs<T>, AsyncCallback, object)

Declaration
public virtual IAsyncResult BeginInvoke(object sender, ItemChangedEventArgs<T> e, AsyncCallback callback, object @object)
Parameters
Type Name Description
object sender
ItemChangedEventArgs<T> e
AsyncCallback callback
object object
Returns
Type Description
IAsyncResult
View Source

EndInvoke(IAsyncResult)

Declaration
public virtual void EndInvoke(IAsyncResult result)
Parameters
Type Name Description
IAsyncResult result
View Source

Invoke(object, ItemChangedEventArgs<T>)

Declaration
public virtual void Invoke(object sender, ItemChangedEventArgs<T> e)
Parameters
Type Name Description
object sender
ItemChangedEventArgs<T> e
  • View Source
In this article
Back to top Generated by DocFX