Ejemplo n.º 1
0
 public BLEOPMPage(OPMPage OPMpage) : base()
 {
     InitializeComponent();
     OPMPage = OPMpage;
     VM      = BindingContext as BLEOPMViewModel;
     Title   = "BLE Opm";
 }
Ejemplo n.º 2
0
 public OPMSettingsPage(OPMPage parent) : base()
 {
     Parent = parent;
     InitializeComponent();
     Title = "OPM Settings";
     VM    = (OPMSettingsViewModel)BindingContext;
 }
Ejemplo n.º 3
0
 public void SetParentPage(OPMPage OPMPage)
 {
     this.OPMPage = OPMPage;
     this.adapter = DependencyService.Get <IAdapter>();
 }