Example #1
0
        private void Full_Click(object sender, RoutedEventArgs e)
        {
            FullNow(true);
            FullScreen fullScreen = new FullScreen(this);

            fullScreen.WindowStartupLocation = WindowStartupLocation.CenterScreen;
            fullScreen.Show();
            fullScreen.WindowState = WindowState.Maximized;
        }
Example #2
0
        private void Window_MouseDoubleClick(object sender, MouseButtonEventArgs e)
        {
            FullNow(true);
            FullScreen fullScreen = new FullScreen(this);

            fullScreen.WindowStartupLocation = WindowStartupLocation.CenterScreen;
            fullScreen.Show();
            fullScreen.WindowState = WindowState.Maximized;
            e.Handled = true;
        }
Example #3
0
 private void Window_KeyDown(object sender, KeyEventArgs e)
 {
     if (e.Key == Key.Left)
     {
         Spotify.PreviousSong();
     }
     else if (e.Key == Key.Right)
     {
         Spotify.NextSong();
     }
     else if (e.Key == Key.Space ^ e.Key == Key.Enter)
     {
         Spotify.PausePlaySong();
     }
     else if (e.Key == Key.F)
     {
         FullNow(true);
         FullScreen fullScreen = new FullScreen(this);
         fullScreen.WindowStartupLocation = WindowStartupLocation.CenterScreen;
         fullScreen.Show();
         fullScreen.WindowState = WindowState.Maximized;
     }
     e.Handled = true;
 }