/// <summary> /// Raises the ItemDataBinding event. /// </summary> protected virtual void OnItemDataBinding(ItemDataBindingEventArgs e) { ItemDataBindingEventHandler handler1 = (ItemDataBindingEventHandler)this.Events[RadListBox.ItemDataBindingEventKey]; if (handler1 != null) { handler1(this, e); } }
void listBoxElement_ItemDataBinding(object sender, ItemDataBindingEventArgs e) { this.OnItemDataBinding(e); }