Esempio n. 1
0
 public TopLevelViewControllerBase() : base()
 {
     ExceptionUtility.Try(() =>
     {
         SubscribeConnectionEvents();
         this.TabBar        = new TabBarView(this);
         this.ConnectionBar = new ConnectionStateDebugView(this);
         this.ReconBar      = new ReconnectingView(this);
     });
 }
Esempio n. 2
0
 public TopLevelViewControllerBase(string nibName, Foundation.NSBundle bundle, AlertViewModel alert) : base(nibName, null)
 {
     ExceptionUtility.Try(() =>
     {
         SubscribeConnectionEvents();
         this.TabBar        = new TabBarView(this);
         this.ConnectionBar = new ConnectionStateDebugView(this);
         this.ReconBar      = new ReconnectingView(this);
         AlertID            = alert;
     });
 }