Skip to main content

Initializer.Init() Method

In This Article

Initializes the DevExpress Editors component.

Namespace: DevExpress.XamarinForms.Editors

Assembly: DevExpress.XamarinForms.Editors.dll

NuGet Package: DevExpress.XamarinForms.Editors

#Declaration

C#
public static void Init()

#Remarks

Call the Init method before the InitializeComponent method call in the App.xaml.cs file of your project with the shared code:

public class App : Application {
    public App () {
        DevExpress.XamarinForms.Editors.Initializer.Init();
        InitializeComponent();

        // ...
    }
}
See Also