コード例 #1
0
ファイル: BLEOPMPage.xaml.cs プロジェクト: user20112/SNPAPP
 public BLEOPMPage(OPMPage OPMpage) : base()
 {
     InitializeComponent();
     OPMPage = OPMpage;
     VM      = BindingContext as BLEOPMViewModel;
     Title   = "BLE Opm";
 }
コード例 #2
0
 public OPMSettingsPage(OPMPage parent) : base()
 {
     Parent = parent;
     InitializeComponent();
     Title = "OPM Settings";
     VM    = (OPMSettingsViewModel)BindingContext;
 }
コード例 #3
0
ファイル: BLEOPMPage.xaml.cs プロジェクト: user20112/SNPAPP
 public void SetParentPage(OPMPage OPMPage)
 {
     this.OPMPage = OPMPage;
     this.adapter = DependencyService.Get <IAdapter>();
 }