wpf-devexpress-dot-xpf-dot-layoutcontrol-dot-datalayoutcontrol-04f349f3.md
Allows you to customize a layout item when its auto generation has been completed.
Namespace : DevExpress.Xpf.LayoutControl
Assembly : DevExpress.Xpf.LayoutControl.v25.2.dll
NuGet Package : DevExpress.Wpf.LayoutControl
public event EventHandler<DataLayoutControlAutoGeneratingItemEventArgs> AutoGeneratingItem
Public Event AutoGeneratingItem As EventHandler(Of DataLayoutControlAutoGeneratingItemEventArgs)
The AutoGeneratingItem event's data class is DataLayoutControlAutoGeneratingItemEventArgs. The following properties provide information specific to this event:
| Property | Description |
|---|---|
| Cancel | Gets or sets a value indicating whether the event should be canceled. Inherited from CancelEventArgs. |
| Item | Gets or sets the item that has been generated. |
| PropertyName | Gets the name of the property to which the generated layout item is bound. |
| PropertyType | Gets the type of the bound property. |
Set the Cancel property to true to undo the automatic layout item generation.
See Also