mirror of
https://github.com/claunia/romrepomgr.git
synced 2025-12-16 19:24:51 +00:00
12 lines
257 B
C#
12 lines
257 B
C#
|
|
using Avalonia.Controls;
|
||
|
|
using Avalonia.Markup.Xaml;
|
||
|
|
|
||
|
|
namespace RomRepoMgr.Views
|
||
|
|
{
|
||
|
|
public class MainWindow : Window
|
||
|
|
{
|
||
|
|
public MainWindow() => InitializeComponent();
|
||
|
|
|
||
|
|
void InitializeComponent() => AvaloniaXamlLoader.Load(this);
|
||
|
|
}
|
||
|
|
}
|