mirror of
https://gitlab.com/2009scape/Saradomin-Launcher.git
synced 2026-08-01 14:19:14 -06:00
20 lines
No EOL
381 B
C#
20 lines
No EOL
381 B
C#
using Avalonia.Controls;
|
|
using Avalonia.Markup.Xaml;
|
|
using PropertyChanged;
|
|
|
|
namespace Saradomin.Views.Controls
|
|
{
|
|
[DoNotNotify]
|
|
public class SettingsView : UserControl
|
|
{
|
|
public SettingsView()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void InitializeComponent()
|
|
{
|
|
AvaloniaXamlLoader.Load(this);
|
|
}
|
|
}
|
|
} |