ModelSynchronizer<T, V> Class
In This Article
The recommended base class to use for model synchronizers.
Namespace: DevExpress.ExpressApp.Model
Assembly: DevExpress.ExpressApp.v24.2.dll
NuGet Package: DevExpress.ExpressApp
#Declaration
public abstract class ModelSynchronizer<T, V> :
ModelSynchronizer
#Type Parameters
Name |
---|
T |
V |
#Remarks
To create a custom model synchronizer by deriving from the ModelSynchronizer<T, V> class, override two methods. Override the protected ApplyModelCore method to check the ModelSynchronizer`2.Model property and configure the ModelSynchronizer.Control accordingly. Override the ModelSynchronizer.SynchronizeModel method to check the Control property and configure the Application Model via the Model property accordingly.
#Implements
#Inheritance
Object
ModelSynchronizer
ModelSynchronizer<T, V>
See Also