server-monitor-manager/src/ServerMonitorManager.Desktop/MainWindow.xaml.cs
2026-07-15 13:27:27 +07:00

29 lines
901 B
C#

using Microsoft.UI.Xaml;
using Windows.Graphics;
// To learn more about WinUI, the WinUI project structure,
// and more about our project templates, see: http://aka.ms/winui-project-info.
namespace ServerMonitorManager_Desktop;
/// <summary>
/// The application window. This hosts a Frame that displays pages. Add your
/// UI and logic to MainPage.xaml / MainPage.xaml.cs instead of here so you
/// can use Page features such as navigation events and the Loaded lifecycle.
/// </summary>
public sealed partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
ExtendsContentIntoTitleBar = true;
SetTitleBar(AppTitleBar);
AppWindow.SetIcon("Assets/AppIcon.ico");
AppWindow.Resize(new SizeInt32(1280, 820));
// Navigate the root frame to the main page on startup.
RootFrame.Navigate(typeof(MainPage));
}
}