Exemplo n.º 1
0
        public StageThreePage(Match _match, StageCompletionManager _stageCompletionManager)
        {
            InitializeComponent();
            Match = _match;
            stageCompletionManager = _stageCompletionManager;

            BindingContext = new StageThreeViewModel(Match, stageCompletionManager);
        }
        public StageOnePage(MasterRecordMatchPage _masterMatchPage, Match _match, StageCompletionManager _stageCompletionManager)
        {
            InitializeComponent();
            Match = _match;
            stageCompletionManager = _stageCompletionManager;
            MasterMatchPage        = _masterMatchPage;

            BindingContext = new StageOneViewModel(this, Match, stageCompletionManager);
        }
Exemplo n.º 3
0
        public StageTwoPage(Match _performance, StageCompletionManager _stageCompletionManager)
        {
            InitializeComponent();
            Match = _performance;
            stageCompletionManager = _stageCompletionManager;

            // So we need to set the bindingcontext during initialization otherwise our MasterRecordPerformance's clock
            //  wont display if we create a new context later.
            BindingContext = new StageTwoViewModel(this, Match, stageCompletionManager);
        }