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