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.v21.2.dll
NuGet Package: DevExpress.Uwp.Controls
Declaration
[Browsable(false)]
[Obsolete("Use the AutoGeneratedColumns event instead")]
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.