Make "Playlist" observable (for scroll to top feature).
This commit is contained in:
@@ -43,7 +43,12 @@ public partial class PlaylistDetailViewModel : ViewModelBase
|
|||||||
|
|
||||||
private DispatcherQueueTimer? _filterTimer;
|
private DispatcherQueueTimer? _filterTimer;
|
||||||
|
|
||||||
public Playlist? Playlist { get; private set; }
|
private Playlist? _playlist;
|
||||||
|
public Playlist? Playlist
|
||||||
|
{
|
||||||
|
get => _playlist;
|
||||||
|
private set => SetProperty(ref _playlist, value);
|
||||||
|
}
|
||||||
|
|
||||||
private PlaylistSong? _playingSong;
|
private PlaylistSong? _playingSong;
|
||||||
public PlaylistSong? PlayingSong
|
public PlaylistSong? PlayingSong
|
||||||
|
|||||||
Reference in New Issue
Block a user