Skip to main content

DataViewBase.RowAnimationBegin Event

Enables you to provide a custom animation effect after row data has been asynchronously retrieved from a data source.

Namespace: DevExpress.Xpf.Grid

Assembly: DevExpress.Xpf.Grid.v14.2.Core.dll

#Declaration

public event RowAnimationEventHandler RowAnimationBegin

#Event Data

The RowAnimationBegin event's handler receives an argument of the DevExpress.Xpf.Grid.RowAnimationBeginEventArgs type.

#Remarks

The DXGrid supports Instant Feedback Mode and Cascading Data Updates. In these modes, node data is asynchronously retrieved by the data source. To provide visual feedback, the grid plays an animation after node data has been retrieved from a data source. The DataViewBase.RowAnimationKind property specifies what animation is played while data rows are being asynchronously retrieved by the data source.

By default, the grid displays nodes that are being loaded, by animating their opacity (see the image above). To provide a custom animation effect, set the DataViewBase.RowAnimationKind property to RowAnimationKind.Custom and handle the RowAnimationBegin event.

See Also