Inheritance: SQLite.SQLiteConnection
コード例 #1
0
ファイル: App.cs プロジェクト: tdyocum/estimotes-xplat
		public App(string databasePath) {
			Data = new SampleDbConnection(databasePath);
			this.MainPage = new TabbedPage {
				Children = {
					new NavigationPage(new RangingPage { Title = "Estimotes - Ranging" }) { Title = "Ranging" },
					new NavigationPage(new MonitorPage { Title = "Estimotes - Monitoring" }) { Title = "Monitoring" }
				}
			};
        }
コード例 #2
0
 public App(string databasePath)
 {
     Data          = new SampleDbConnection(databasePath);
     this.MainPage = new TabbedPage {
         Children =
         {
             new NavigationPage(new RangingPage {
                 Title = "Estimotes - Ranging"
             })
             {
                 Title = "Ranging"
             },
             new NavigationPage(new MonitorPage {
                 Title = "Estimotes - Monitoring"
             })
             {
                 Title = "Monitoring"
             }
         }
     };
 }