Skip to main content
.NET 8.0+

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

ModelSynchronizer<T, V> Class

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.

#Inheritance

Object
ModelSynchronizer
ModelSynchronizer<T, V>
See Also