diff options
Diffstat (limited to 'Views/Settings/Settings.xaml.cs')
| -rw-r--r-- | Views/Settings/Settings.xaml.cs | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Views/Settings/Settings.xaml.cs b/Views/Settings/Settings.xaml.cs new file mode 100644 index 0000000..4504460 --- /dev/null +++ b/Views/Settings/Settings.xaml.cs @@ -0,0 +1,18 @@ +using Avalonia.Controls; +using Avalonia.Markup.Xaml; + +namespace Avalar.Views.Settings +{ + public class Settings : UserControl + { + public Settings() + { + InitializeComponent(); + } + + private void InitializeComponent() + { + AvaloniaXamlLoader.Load(this); + } + } +}
\ No newline at end of file |
