Initializer.Init() Method
Initializes the DevExpress Scheduler component.
Namespace: DevExpress.XamarinForms.Scheduler
Assembly: DevExpress.XamarinForms.Scheduler.dll
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.Scheduler.Initializer.Init();
InitializeComponent();
// ...
}
}
See Also
Feedback