Exemplo n.º 1
0
 private void CoolDownStart()
 {
     CountDownBar.Value      = 100;
     CountDownBar.Foreground = new SolidColorBrush(Colors.Turquoise);
     GameDescTextBlock.Text  = $"Round {++_roundNum} is coming...";
     CountDownAnimation.Begin();
     _gameStatus = true;
 }
Exemplo n.º 2
0
        private async Task GameStarted()
        {
            ClearSongInfo();
            CountDownBar.Value      = 100;
            CountDownBar.Foreground = new SolidColorBrush(Colors.HotPink);
            GameDescTextBlock.Text  = $"Round {_roundNum} ";
            await PlaySong();

            CountDownAnimation.Begin();
            _gameStatus = false;
        }