public PopupEditorNotificationData( ListItemDataBoundEventArgs listItemDataBoundEventArgs) : this() { this.notificationContext = PopupEditorNotificationData.Context.ListItemDataBound; this.listItemDataBoundEventArgs = listItemDataBoundEventArgs; }
protected virtual void OnItemDataBound(object sender, ListItemDataBoundEventArgs args) { ListItemDataBoundEventHandler handler = (ListItemDataBoundEventHandler)this.Events[ListItemDataBoundEventKey]; if (handler != null) { handler(this, args); } }
protected virtual void OnItemDataBound(object sender, ListItemDataBoundEventArgs args) { ListItemDataBoundEventHandler boundEventHandler = (ListItemDataBoundEventHandler)this.Events[RadListControl.ListItemDataBoundEventKey]; if (boundEventHandler == null) { return; } boundEventHandler((object)this, args); }
public PopupEditorNotificationData() { this.notificationContext = PopupEditorNotificationData.Context.None; this.valueChangedEventArgs = (Telerik.WinControls.UI.Data.ValueChangedEventArgs)null; this.positionChangingCancelEventArgs = (PositionChangingCancelEventArgs)null; this.positionChangedEventArgs = (Telerik.WinControls.UI.Data.PositionChangedEventArgs)null; this.listItemDataBindingEventArgs = (ListItemDataBindingEventArgs)null; this.listItemDataBoundEventArgs = (ListItemDataBoundEventArgs)null; this.creatingVisualListItemEventArgs = (CreatingVisualListItemEventArgs)null; this.keyPressEventArgs = (KeyPressEventArgs)null; this.mouseEventArgs = (MouseEventArgs)null; this.sortStyleChanged = (SortStyleChangedEventArgs)null; this.visualItemFormatting = (VisualItemFormattingEventArgs)null; this.keyEventArgs = (KeyEventArgs)null; }
private void listElement_ItemDataBound(object sender, ListItemDataBoundEventArgs args) { this.NotifyOwner(new PopupEditorNotificationData(args)); }
private void element_ItemDataBound(object sender, ListItemDataBoundEventArgs args) { this.OnItemDataBound(sender, args); }