Skip to main content
A newer version of this page is available.

IDataSourceWizardCustomizationService.CustomizeDataSourceWizard(IWizardCustomization<DataSourceModel>) Method

Allows you to customize the Data Source Wizard for a Snap application.

Namespace: DevExpress.Snap.Services

Assembly: DevExpress.Snap.v18.2.dll

Declaration

void CustomizeDataSourceWizard(
    IWizardCustomization<DataSourceModel> tool
)

Parameters

Name Type Description
tool IWizardCustomization<DataSourceModel>

An object exposing the IWizardCustomization<DataSourceModel> interface.

Remarks

For details on how to implement the CustomizeDataSourceWizard method to modify the standard Data Source Wizard, refer to the How to: Customize the Data Source Wizard example.

Note that you can also use the SnapControlOptions.DataSourceWizardOptions property to get access to the DataSourceWizardOptions object that allows you to specify the list of data source types available for end-users from the Data Source Wizard.

See Also