Пример #1
0
        public GameEditViewModel()
        {
            LateTapCommand = new RelayCommand(edit_Tap);
            EditTapCommand = new RelayCommand(late_Tap);
            _navigationService = GetService<INavigationService>();

            _frezoutGame = (FrezoutGame) _navigationService.GetLastNavigationData();
            if (_frezoutGame.IsLateRegExist)
                IsVisibleRegButton = !_frezoutGame.IsEndedRegistration;

            if (!_frezoutGame.IsBigCurrentLevel())
                IsEnablesBlindButton = true;
        }