コード例 #1
0
        public DailyHistoryPlaylistPage(User BaseUser, MainWindow main)
        {
            InitializeComponent();
            user       = BaseUser;
            mainWindow = main;
            Recommender recommender = new Recommender(db);

            playlist        = recommender.getDailyPlaylist(user.UserID, "History Playlist");
            SongsInPlaylist = playlist.GetSongsInPlaylist();
            _PlaylistID     = playlist.playlistID;
            _PlaylistName   = playlist.playlistName;
            Console.WriteLine(_PlaylistName);
            SongsInPlaylist = playlist.GetSongsInPlaylist();
            Thickness       SongBlockThickness = new Thickness(5, 2, 0, 0);
            SolidColorBrush whiteText          = new SolidColorBrush(System.Windows.Media.Colors.White);
            StackPanel      sp = new StackPanel();

            sp.Orientation = Orientation.Horizontal;

            var PlaylistBlock = new TextBlock
            {
                Text       = $"{playlist.playlistName}",
                FontSize   = 25,
                Foreground = whiteText,
                Margin     = new Thickness(0, 10, 0, 5)
            };
            var PlayPlaylistButton = new Button
            {
                Name            = $"_{_PlaylistID}",
                Content         = "Play",
                FontSize        = 30,
                Margin          = new Thickness(0, 10, 25, 0),
                Padding         = new Thickness(5),
                BorderThickness = new Thickness(0),
                Height          = 50,
                Width           = 100
            };

            PlayPlaylistButton.Click += PlayPlaylist;

            sp.Children.Add(PlayPlaylistButton);
            sp.Children.Add(PlaylistBlock);
            HistoryPlaylistName.Children.Add(sp);

            OrderList.RowDefinitions.Add(new RowDefinition());

            // Add the Songname text block to the Songlist grid
            var OrderName = new TextBlock
            {
                Name       = "Name",
                Text       = "Name",
                Foreground = whiteText,
                Margin     = SongBlockThickness,
                FontSize   = 15
            };

            Grid.SetRow(OrderName, 0);
            Grid.SetColumn(OrderName, 1);

            // Add the artist text block to the Songlist grid
            var OrderArtist = new TextBlock
            {
                Name       = $"Artist",
                Text       = $"Artist",
                Foreground = whiteText,
                Margin     = SongBlockThickness,
                FontSize   = 15
            };

            Grid.SetRow(OrderArtist, 0);
            Grid.SetColumn(OrderArtist, 2);

            // Add the album text block to the Songlist grid
            var OrderAlbum = new TextBlock
            {
                Name       = $"Album",
                Text       = $"Album",
                Foreground = whiteText,
                Margin     = SongBlockThickness,
                FontSize   = 15
            };

            Grid.SetRow(OrderAlbum, 0);
            Grid.SetColumn(OrderAlbum, 3);

            // Add the year text block to the Songlist grid
            var OrderYear = new TextBlock
            {
                Name       = $"Year",
                Text       = $"Year",
                Foreground = whiteText,
                Margin     = SongBlockThickness,
                FontSize   = 15
            };

            Grid.SetRow(OrderYear, 0);
            Grid.SetColumn(OrderYear, 4);

            // Add the elements to the Songlist grid Children collection
            OrderList.Children.Add(OrderName);
            OrderList.Children.Add(OrderArtist);
            OrderList.Children.Add(OrderAlbum);
            OrderList.Children.Add(OrderYear);

            //Adds the necessary amount of rows for the playlist
            for (int i = 0; i < playlist.songPlaylist.Count; i++)
            {
                Song          playlistSong = playlist.songPlaylist[i];
                RowDefinition rowDef       = new RowDefinition();
                rowDef.Name = $"Row_{i}";
                HistorySongList.RowDefinitions.Add(rowDef);
                RowDefinitionCollection RowNames = HistorySongList.RowDefinitions;
                Array RowArray = RowNames.ToArray();

                // Add the play button to the Songlist grid
                var PlayButton = new Button
                {
                    Name            = $"__{playlistSong.SongID}",
                    Content         = "Play",
                    Margin          = new Thickness(5, 0, 0, 5),
                    Padding         = new Thickness(5),
                    BorderThickness = new Thickness(0),
                    FontSize        = 15,
                    Tag             = playlistSong
                };
                Grid.SetRow(PlayButton, i);
                Grid.SetColumn(PlayButton, 0);
                PlayButton.Click += PlaySongFromPlaylist;

                // Add the Songname text block to the Songlist grid
                var SongBlockName = new TextBlock
                {
                    Name       = $"_{playlistSong.SongID}",
                    Text       = $"{playlistSong.SongName}",
                    Foreground = whiteText,
                    Margin     = SongBlockThickness,
                    FontSize   = 15
                };
                Grid.SetRow(SongBlockName, i);
                Grid.SetColumn(SongBlockName, 1);

                // Add the artist text block to the Songlist grid
                var SongBlockArtist = new TextBlock
                {
                    Name       = $"_{playlistSong.SongID}",
                    Text       = $"{playlistSong.Artist}",
                    Foreground = whiteText,
                    Margin     = SongBlockThickness,
                    FontSize   = 15
                };
                Grid.SetRow(SongBlockArtist, i);
                Grid.SetColumn(SongBlockArtist, 2);

                // Add the album text block to the Songlist grid
                var SongBlockAlbum = new TextBlock
                {
                    Name       = $"_{playlistSong.SongID}",
                    Text       = $"{playlistSong.Album}",
                    Foreground = whiteText,
                    Margin     = SongBlockThickness,
                    FontSize   = 15
                };
                Grid.SetRow(SongBlockAlbum, i);
                Grid.SetColumn(SongBlockAlbum, 3);

                // Add the year text block to the Songlist grid
                var SongBlockYear = new TextBlock
                {
                    Name       = $"_{playlistSong.SongID}",
                    Text       = $"{playlistSong.Year}",
                    Foreground = whiteText,
                    Margin     = SongBlockThickness,
                    FontSize   = 15
                };
                Grid.SetRow(SongBlockYear, i);
                Grid.SetColumn(SongBlockYear, 4);

                // Add the elements to the Songlist grid Children collection
                HistorySongList.Children.Add(PlayButton);
                HistorySongList.Children.Add(SongBlockName);
                HistorySongList.Children.Add(SongBlockArtist);
                HistorySongList.Children.Add(SongBlockAlbum);
                HistorySongList.Children.Add(SongBlockYear);

                ContextMenu menu = new ContextMenu();
                menu.Background = new SolidColorBrush(System.Windows.Media.Colors.Black);
                menu.Foreground = new SolidColorBrush(System.Windows.Media.Colors.White);

                HistorySongList.ContextMenu           = null;
                HistorySongList.MouseRightButtonDown += new MouseButtonEventHandler(SongContextMenuOpening);
            }
        }