Skip to main content

Initializer Class

Contains the Init method that initializes the DevExpress Scheduler component.

Namespace: DevExpress.XamarinForms.Scheduler

Assembly: DevExpress.XamarinForms.Scheduler.dll

NuGet Package: DevExpress.XamarinForms.Scheduler

Declaration

public static class Initializer

Remarks

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

public class App : Application {
    public App () {
        DevExpress.XamarinForms.Scheduler.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.Scheduler.iOS.Initializer.Init();

Inheritance

Object
Initializer
See Also