using StrixMusic.Sdk.Services.Navigation; using StrixMusic.Sdk.WinUI.Controls.Shells; using Windows.UI.Xaml; using Windows.UI.Xaml.Controls; namespace StrixMusic.Shells.ZuneDesktop.Styles.Views { /// /// A containing the style and template for the in the ZuneDesktop Shell. /// public sealed partial class NowPlayingViewStyle : ResourceDictionary { /// /// Initializes a new instance of the class. /// public NowPlayingViewStyle() { this.InitializeComponent(); } private void GoBack(object sender, RoutedEventArgs e) { Shell.Ioc.GetService>()!.GoBack(); } } }