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

Initializer.Init() Method

Initializes the DevExpress Editors component.

Namespace: DevExpress.XamarinForms.Editors

Assembly: DevExpress.XamarinForms.Editors.dll

NuGet Package: DevExpress.XamarinForms.Editors

Declaration

public static void Init()

Remarks

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

public partial class MainPage : ContentPage {
    public MainPage() {
        DevExpress.XamarinForms.Editors.Initializer.Init();
        InitializeComponent();

        // ...
    }
}
See Also