示例#1
0
 public InternetConnectionPage()
 {
     try
     {
         App.Configuration.Initial(this, false);
         NavigationPage.SetHasNavigationBar(this, false);
         this._model = new InternetConnectionViewModel();
         InitializeComponent();
         BindingContext = this._model;
     }
     catch (Exception)
     {
         //
     }
 }
示例#2
0
 public InternetConnectionPage()
 {
     try
     {
         App.Configuration.InitialAsync(this, false);
         NavigationPage.SetHasNavigationBar(this, false);
         this._model = new InternetConnectionViewModel();
         InitializeComponent();
         BindingContext = this._model;
     }
     catch (Exception ex)
     {
         var exceptionHandler = new ExceptionHandler(TAG, ex);
     }
 }