Exemplo n.º 1
0
        /// <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);
            }
        }
Exemplo n.º 2
0
 void listBoxElement_ItemDataBinding(object sender, ItemDataBindingEventArgs e)
 {
     this.OnItemDataBinding(e);
 }