This commit is contained in:
Steven Hobs
2026-02-12 23:35:48 +08:00
commit b03db7ac51
15 changed files with 1007 additions and 0 deletions

14
MainWindow.xaml.cs Normal file
View File

@@ -0,0 +1,14 @@
namespace MyApp;
using WinUIEx;
public sealed partial class MainWindow : WindowEx
{
public MainWindow()
{
this.InitializeComponent();
this.SetIcon("Assets/Logo/app.ico");
Title = "Pure";
Width = 600;
Height = 480;
}
}