mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
19 lines
383 B
C#
19 lines
383 B
C#
|
|
using Avalonia;
|
|||
|
|
using Avalonia.Controls;
|
|||
|
|
using Avalonia.Markup.Xaml;
|
|||
|
|
|
|||
|
|
namespace Aaru.Gui.Views
|
|||
|
|
{
|
|||
|
|
public class StatisticsDialog : Window
|
|||
|
|
{
|
|||
|
|
public StatisticsDialog()
|
|||
|
|
{
|
|||
|
|
InitializeComponent();
|
|||
|
|
#if DEBUG
|
|||
|
|
this.AttachDevTools();
|
|||
|
|
#endif
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
void InitializeComponent() => AvaloniaXamlLoader.Load(this);
|
|||
|
|
}
|
|||
|
|
}
|