BridgeTry.MainWindow.OnCreate C# (CSharp) Метод

OnCreate() защищенный Метод

protected OnCreate ( Bundle bundle ) : void
bundle Bundle
Результат void
        protected override void OnCreate(Bundle bundle) {
            TinyIoCContainer.Current.Register<WebMarco.Backend.App.Common.BaseAppDelegate, AppDelegate>(AppDelegate.Instance);
            TinyIoCContainer.Current.Register<AppHelper.Data.Manager, Manager>(new Manager((Context)this));
            AppHelper.Data.ConnectDatabase();
            base.OnCreate(bundle);

            /// Program entry point is here
            


            MainView = new MainView(this);
            SetContentView((View)MainView);
            MainView.Load();
        }
    }