public PopupEditorNotificationData(
     ListItemDataBoundEventArgs listItemDataBoundEventArgs)
     : this()
 {
     this.notificationContext        = PopupEditorNotificationData.Context.ListItemDataBound;
     this.listItemDataBoundEventArgs = listItemDataBoundEventArgs;
 }
 public PopupEditorNotificationData(
     PositionChangingCancelEventArgs positionChangingCancelEventArgs)
     : this()
 {
     this.notificationContext             = PopupEditorNotificationData.Context.SelectedIndexChanging;
     this.positionChangingCancelEventArgs = positionChangingCancelEventArgs;
 }
 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;
 }
 public PopupEditorNotificationData(MouseEventArgs mouseEventArgs)
 {
     this.notificationContext = PopupEditorNotificationData.Context.MouseEvent;
     this.mouseEventArgs      = mouseEventArgs;
 }
 public PopupEditorNotificationData(KeyPressEventArgs keyPressEventArgs)
     : this()
 {
     this.notificationContext = PopupEditorNotificationData.Context.KeyPress;
     this.keyPressEventArgs   = keyPressEventArgs;
 }
 public PopupEditorNotificationData(
     CreatingVisualListItemEventArgs creatingVisualListItemEventArgs)
 {
     this.notificationContext             = PopupEditorNotificationData.Context.CreatingVisualItem;
     this.creatingVisualListItemEventArgs = creatingVisualListItemEventArgs;
 }
 public PopupEditorNotificationData(Telerik.WinControls.UI.Data.PositionChangedEventArgs positionChangedEventArgs)
     : this()
 {
     this.notificationContext      = PopupEditorNotificationData.Context.SelectedIndexChanged;
     this.positionChangedEventArgs = positionChangedEventArgs;
 }
 public PopupEditorNotificationData(Telerik.WinControls.UI.Data.ValueChangedEventArgs valueChangedEventArgs)
     : this()
 {
     this.notificationContext   = PopupEditorNotificationData.Context.SelectedValueChanged;
     this.valueChangedEventArgs = valueChangedEventArgs;
 }
 public PopupEditorNotificationData(KeyEventArgs keyEventArgs)
 {
     this.notificationContext = PopupEditorNotificationData.Context.KeyUpKeyDownPress;
     this.keyEventArgs        = keyEventArgs;
 }
 public PopupEditorNotificationData(VisualItemFormattingEventArgs visualItemFormatting)
 {
     this.notificationContext  = PopupEditorNotificationData.Context.VisualItemFormatting;
     this.visualItemFormatting = visualItemFormatting;
 }
 public PopupEditorNotificationData(SortStyleChangedEventArgs sortStyleChanged)
 {
     this.notificationContext = PopupEditorNotificationData.Context.SortStyleChanged;
     this.sortStyleChanged    = sortStyleChanged;
 }