New to Telerik UI for WinFormsStart a free 30-day trial

Definition

Namespace:Telerik.WinControls.UI

Assembly:Telerik.WinControls.UI.dll

Syntax:

C#
public class ItemDataBoundEventArgs : EventArgs

Inheritance: objectEventArgsItemDataBoundEventArgs

Inherited Members EventArgs.Empty

Constructors

Takes as parameters the RadItem that is bound and the object that is being bound to the RadItem.

C#
public ItemDataBoundEventArgs(RadItem dataBoundItem, object dataItem)
Parameters:dataBoundItemRadItem

The RadItem that is bound.

dataItemobject

The object that is being bound to the DataBoundItem.

Properties

Gets the RadItem that is bound.

C#
public RadItem DataBoundItem { get; }

Gets the object that is being bound to the DataBoundItem.

C#
public object DataItem { get; }