private void SongSelectBtn_Click(object sender, RoutedEventArgs e)
        {
            Config.InitializeConfig();

            SongList.ItemsSource = PC.GetPllFromFile(Config.OsuPlaylist).Songs;
            CurrentPlaylist      = PC.GetPllFromFile(Config.OsuPlaylist);

            searchBarTxt.IsEnabled = true;
        }
        private void PlaylistSelectBtn_Click(object sender, RoutedEventArgs e)
        {
            //Open new window
            //Catch all .pll files and display them
            //Return Playlist

            PlaylistConverter PC = new PlaylistConverter();

            OpenFileDialog ofd = new OpenFileDialog
            {
                Filter           = "Playlist files | *.pll",
                InitialDirectory = Path.Combine(Environment.CurrentDirectory, "jsonFiles")
            };

            if (ofd.ShowDialog() == true)
            {
                MainWindow.CurrentPlaylist = PC.GetPllFromFile(ofd.FileName);
                Playlist.ItemsSource       = PC.GetPllFromFile(ofd.FileName).Songs;

                SongFileRightBtn.Text = MainWindow.CurrentPlaylist.PlaylistName;
            }
        }