using HaloPixelToolBox.Client.Views; namespace HaloPixelToolBox.Client; /// /// An empty window that can be used on its own or navigated to within a Frame. /// public sealed partial class TrayMenuWindow : Window { public TrayMenuWindow() { InitializeComponent(); Content = new TrayMenuPage(this); } }