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 ItemDataBindingEventArgs : EventArgs

Inheritance: objectEventArgsItemDataBindingEventArgs

Inherited Members EventArgs.Empty

Constructors

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

C#
public ItemDataBindingEventArgs(RadItem dataBindingItem, object dataItem)
Parameters:dataBindingItemRadItem

The RadItem that is binding.

dataItemobject

The object that is being bound to the DataBoundItem.

Properties

Gets the RadItem that is bound.

C#
public RadItem DataBindingItem { get; }

Gets the object that is being bound to the DataBoundItem.

C#
public object DataItem { get; }

Gets the RadItem that was swapped with a new RadItem.

C#
public RadItem NewBindingItem { get; set; }