wpf-devexpress-dot-xpf-dot-core-dot-datasources-dot-unbounddatasource-9209b0d1.md
Occurs when the UnboundDataSource‘s list is about to be changed.
Namespace : DevExpress.Xpf.Core.DataSources
Assembly : DevExpress.Xpf.Core.v25.2.dll
NuGet Package : DevExpress.Wpf.Core
public event EventHandler<UnboundSourceListChangedEventArgs> UnboundSourceListChanging
Public Event UnboundSourceListChanging As EventHandler(Of UnboundSourceListChangedEventArgs)
The UnboundSourceListChanging event's data class is UnboundSourceListChangedEventArgs. The following properties provide information specific to this event:
| Property | Description |
|---|---|
| IsTriggeredByComponentApi | Gets a value indicating if the current event is triggered by the UnboundSource component API. |
| ListChangedType | Gets the type of change. Inherited from ListChangedEventArgs. |
| NewIndex | Gets the index of the item affected by the change. Inherited from ListChangedEventArgs. |
| OldIndex | Gets the old index of an item that has been moved. Inherited from ListChangedEventArgs. |
| PropertyDescriptor | Gets the PropertyDescriptor that was added, changed, or deleted. Inherited from ListChangedEventArgs. |
See Also