using StrixMusic.Sdk.WinUI.Controls;
using Windows.UI.Xaml;
namespace StrixMusic.Sdk.WinUI.Styles.Views.Secondary
{
///
/// A containing the default style for the .
///
public sealed partial class PlaylistViewStyle : ResourceDictionary
{
///
/// Initializes a new instance of the class.
///
public PlaylistViewStyle()
{
this.InitializeComponent();
}
//private void GoToOwner(object sender, RoutedEventArgs e)
//{
// if ((sender as Control)?.DataContext is ArtistViewModel viewModel)
// {
// INavigationService navigationService = Shell.Ioc.GetService>() ?? ThrowHelper.ThrowInvalidOperationException>();
// navigationService.NavigateTo(typeof(ArtistView), false, viewModel);
// }
//}
}
}