mirror of
https://gitee.com/chinware/atomui.git
synced 2024-12-02 03:47:52 +08:00
15 lines
239 B
C#
15 lines
239 B
C#
using Avalonia;
|
|
using Avalonia.Controls;
|
|
|
|
namespace AtomUI.Demo.Desktop.Views;
|
|
|
|
public partial class MainWindow : Window
|
|
{
|
|
public MainWindow()
|
|
{
|
|
InitializeComponent();
|
|
#if DEBUG
|
|
this.AttachDevTools();
|
|
#endif
|
|
}
|
|
} |