Skip to main content
A newer version of this page is available. .

DataControlBase.ColumnsPopulated Event

OBSOLETE

Use the AutoGeneratedColumns event instead

Occurs after the columns have been automatically generated.

Namespace: DevExpress.UI.Xaml.Grid

Assembly: DevExpress.UI.Xaml.Grid.v19.2.dll

Declaration

[Obsolete("Use the AutoGeneratedColumns event instead")]
[Browsable(false)]
public event EventHandler ColumnsPopulated

Event Data

The ColumnsPopulated event's data class is EventArgs.

Remarks

If the grid’s DataControlBase.AutoGenerateColumns option is enabled, binding the grid to a data source automatically generates columns for all data source fields. After all columns have been created and added to the GridControl.Columns collection, the grid fires the ColumnsPopulated event. Handle this event to specify column settings (e.g. apply sorting, hide individual columns, etc.).

The ColumnsPopulated event is not raised if the DataControlBase.AutoGenerateColumns property is set to false.

See Also