New to Telerik UI for WinFormsStart a free 30-day trial

Definition

Namespace:Telerik.WinControls.UI

Assembly:Telerik.WinControls.GridView.dll

Syntax:

C#
public class EventDispatcher

Inheritance: objectEventDispatcher

Constructors

C#
public EventDispatcher()

Fields

C#
public static readonly object AutoGeneratingColumn
C#
public static readonly object CellBeginEdit
C#
public static readonly object CellClick
C#
public static readonly object CellClipboardCopy
C#
public static readonly object CellClipboardPaste
C#
public static readonly object CellEditorInitialized
C#
public static readonly object CellEndEdit
C#
public static readonly object CellMouseMove
C#
public static readonly object CellPaint
C#
public static readonly object CellValidated
C#
public static readonly object CellValidating
C#
public static readonly object CellValueChanged
C#
public static readonly object CellValueNeeded
C#
public static readonly object CellValuePushed
C#
public static readonly object ChildViewExpanded
C#
public static readonly object ChildViewExpanding
C#
public static readonly object ColumnChooserItemElementCreating
C#
public static readonly object ColumnIndexChanged
C#
public static readonly object ColumnIndexChanging
C#
public static readonly object ColumnPropertyChanged
C#
public static readonly object ColumnWidthChanged
C#
public static readonly object ColumnWidthChanging
C#
public static readonly object CommandCellClick
C#
public static readonly object ConditionalFormattingFormShown
C#
public static readonly object ContextMenuOpening
C#
public static readonly object Copying
C#
public static readonly object CreateCompositeFilterDialog
C#
public static readonly object CreateRowInfo
C#
public static readonly object CurrentCellChanged
C#
public static readonly object CurrentColumnChanged
C#
public static readonly object CurrentRowChanged
C#
public static readonly object CurrentRowChanging
C#
public static readonly object CustomFiltering
C#
public static readonly object CustomGrouping
C#
public static readonly object CustomSorting
C#
public static readonly object DataBindingComplete
C#
public static readonly object DataError
C#
public static readonly object DefaultValuesNeeded
C#
public static readonly object EditorRequired

Represent empty event dispatcher

C#
public static readonly EventDispatcher Empty
C#
public static readonly object ExpressionEditorFormCreated
C#
public static readonly object FilterChangedEvent
C#
public static readonly object FilterChangingEvent
C#
public static readonly object FilterExpressionChanged
C#
public static readonly object FilterPopupInitialized
C#
public static readonly object FilterPopupRequired
C#
public static readonly object GroupByChanged
C#
public static readonly object GroupByChanging
C#
public static readonly object GroupExpanded
C#
public static readonly object GroupExpanding
C#
public static readonly object GroupSortChanged
C#
public static readonly object GroupSortChanging
C#
public static readonly object GroupSummaryEvaluate
C#
public static readonly object HeaderCellToggleStateChanged
C#
public static readonly object HyperlinkOpened
C#
public static readonly object HyperlinkOpening
C#
public static readonly object InvalidateRow
C#
public static readonly object LayoutLoaded
C#
public static readonly object PageChanged
C#
public static readonly object PageChanging
C#
public static readonly object Pasting
C#
public static readonly object PositionChanged
C#
public static readonly object PositionChanging
C#
public static readonly object RowHeightChanged
C#
public static readonly object RowHeightChanging
C#
public static readonly object RowMouseMove
C#
public static readonly object RowPaint
C#
public static readonly object RowPropertyChanged
C#
public static readonly object RowsChanged
C#
public static readonly object RowsChanging
C#
public static readonly object RowSourceNeeded
C#
public static readonly object RowValidated
C#
public static readonly object RowValidating
C#
public static readonly object SelectionChanged
C#
public static readonly object SelectionChanging
C#
public static readonly object SortChangedEvent
C#
public static readonly object SortChangingEvent
C#
public static readonly object ToolTipTextNeeded
C#
public static readonly object UserAddedRow
C#
public static readonly object UserAddingRow
C#
public static readonly object UserChangedCurrentRow
C#
public static readonly object UserDeletedRow
C#
public static readonly object UserDeletingRow
C#
public static readonly object ValueChanged
C#
public static readonly object ValueChanging
C#
public static readonly object ViewColumnsChanged

Properties

Gets whetehr the event dispatcher is suspended.

C#
public bool IsSuspended { get; }
Property Value:

The is suspended.

Methods

Adds the listener.

C#
public virtual void AddListener<T>(object eventKey, EventHandler<T> eventRaisingMethod) where T : EventArgs
Parameters:eventKeyobject

The event key.

eventRaisingMethodEventHandler<T>

The event raising method.

Clears all listeners

C#
public void ClearListeners()

Raises the event.

C#
public virtual void RaiseEvent<T>(object eventKey, object sender, T args) where T : EventArgs
Parameters:eventKeyobject

The event key.

senderobject

The sender.

argsT

The args.

Removes the listener.

C#
public virtual void RemoveListener<T>(object eventKey, EventHandler<T> eventRaisingMethod) where T : EventArgs
Parameters:eventKeyobject

The event key.

eventRaisingMethodEventHandler<T>

The event raising method.

Removes all listeners for specified key

C#
public void RemoveListenersByKey(object eventKey)
Parameters:eventKeyobject

Resumes the event.

C#
public void ResumeEvent(object key)
Parameters:keyobject

The key.

Resumes the notifications.

C#
public void ResumeNotifications()

Suspends the event.

C#
public void SuspendEvent(object key)
Parameters:keyobject

The key.

Suspends the notifications.

C#
public void SuspendNotifications()
In this article
DefinitionConstructorsEventDispatcher()FieldsAutoGeneratingColumnCellBeginEditCellClickCellClipboardCopyCellClipboardPasteCellEditorInitializedCellEndEditCellMouseMoveCellPaintCellValidatedCellValidatingCellValueChangedCellValueNeededCellValuePushedChildViewExpandedChildViewExpandingColumnChooserItemElementCreatingColumnIndexChangedColumnIndexChangingColumnPropertyChangedColumnWidthChangedColumnWidthChangingCommandCellClickConditionalFormattingFormShownContextMenuOpeningCopyingCreateCompositeFilterDialogCreateRowInfoCurrentCellChangedCurrentColumnChangedCurrentRowChangedCurrentRowChangingCustomFilteringCustomGroupingCustomSortingDataBindingCompleteDataErrorDefaultValuesNeededEditorRequiredEmptyExpressionEditorFormCreatedFilterChangedEventFilterChangingEventFilterExpressionChangedFilterPopupInitializedFilterPopupRequiredGroupByChangedGroupByChangingGroupExpandedGroupExpandingGroupSortChangedGroupSortChangingGroupSummaryEvaluateHeaderCellToggleStateChangedHyperlinkOpenedHyperlinkOpeningInvalidateRowLayoutLoadedPageChangedPageChangingPastingPositionChangedPositionChangingRowHeightChangedRowHeightChangingRowMouseMoveRowPaintRowPropertyChangedRowsChangedRowsChangingRowSourceNeededRowValidatedRowValidatingSelectionChangedSelectionChangingSortChangedEventSortChangingEventToolTipTextNeededUserAddedRowUserAddingRowUserChangedCurrentRowUserDeletedRowUserDeletingRowValueChangedValueChangingViewColumnsChangedPropertiesIsSuspendedMethodsAddListener<T>(object, EventHandler<T>)ClearListeners()RaiseEvent<T>(object, object, T)RemoveListener<T>(object, EventHandler<T>)RemoveListenersByKey(object)ResumeEvent(object)ResumeNotifications()SuspendEvent(object)SuspendNotifications()
Not finding the help you need?
Contact Support