Ejemplo n.º 1
0
        public PageBase(IBackgroundService backgroundService, IDialogServerHost dialogServerHost)
        {
            _backgroundService = backgroundService;
            _dialogServerHost  = dialogServerHost;

            // On iOS hide the back button title
            NavigationPage.SetBackButtonTitle(this, string.Empty);
        }
 public SequenceEditorPage(PageViewModelBase vm, IBackgroundService backgroundService, IDialogServerHost dialogServerHost)
     : base(backgroundService, dialogServerHost)
 {
     InitializeComponent();
     AfterInitialize(vm);
 }
 public ControllerProfilePage(PageViewModelBase vm, IBackgroundService backgroundService, IDialogServerHost dialogServerHost)
     : base(backgroundService, dialogServerHost)
 {
     InitializeComponent();
     AfterInitialize(vm);
 }
 public ChannelSetupPage(PageViewModelBase vm, IBackgroundService backgroundService, IDialogServerHost dialogServerHost)
     : base(backgroundService, dialogServerHost)
 {
     InitializeComponent();
     AfterInitialize(vm);
 }