From ad0943f88ba9f5ed6eae198ecb4835c0f44701de Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Wed, 17 Jun 2026 21:33:40 +0800 Subject: chore: initialize project structure and add core modules --- rola-desktop/Views/MainWindow.axaml | 20 ++++++++++++++++++++ rola-desktop/Views/MainWindow.axaml.cs | 11 +++++++++++ 2 files changed, 31 insertions(+) create mode 100644 rola-desktop/Views/MainWindow.axaml create mode 100644 rola-desktop/Views/MainWindow.axaml.cs (limited to 'rola-desktop/Views') diff --git a/rola-desktop/Views/MainWindow.axaml b/rola-desktop/Views/MainWindow.axaml new file mode 100644 index 0000000..6ed88af --- /dev/null +++ b/rola-desktop/Views/MainWindow.axaml @@ -0,0 +1,20 @@ + + + + + + + + + + diff --git a/rola-desktop/Views/MainWindow.axaml.cs b/rola-desktop/Views/MainWindow.axaml.cs new file mode 100644 index 0000000..14f9599 --- /dev/null +++ b/rola-desktop/Views/MainWindow.axaml.cs @@ -0,0 +1,11 @@ +using Avalonia.Controls; + +namespace rola_desktop.Views; + +public partial class MainWindow : Window +{ + public MainWindow() + { + InitializeComponent(); + } +} \ No newline at end of file -- cgit