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

Initializer Class

Contains the Init method that initializes the DevExpress Editors component.

Namespace: DevExpress.XamarinForms.Editors

Assembly: DevExpress.XamarinForms.Editors.dll

NuGet Package: DevExpress.XamarinForms.Editors

Declaration

public static class Initializer

Remarks

After you add the DevExpress Editors component to your Xamarin.Forms solution, call the Init method before the InitializeComponent method call in the MainPage.xaml.cs file of the project with the shared code…

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

        // ...
    }
}

…and add the following initialization code before the LoadApplication method call in the AppDelegate.cs file of the iOS project:

DevExpress.XamarinForms.Editors.iOS.Initializer.Init();

Inheritance

Object
Initializer
See Also