using Windows.UI.Xaml.Controls; namespace StrixMusic.Sdk.WinUI.Controls.Views { /// /// A Templated for the home page of shell. /// public sealed partial class HomeView : Control { /// /// Initializes a new instance of the class. /// public HomeView() { this.DefaultStyleKey = typeof(HomeView); } /// protected override void OnApplyTemplate() { base.OnApplyTemplate(); } } }