diff options
| author | Dennis Brentjes <d.brentjes@gmail.com> | 2019-12-15 22:30:38 +0100 |
|---|---|---|
| committer | Dennis Brentjes <d.brentjes@gmail.com> | 2019-12-15 22:30:38 +0100 |
| commit | 0f98b398520a3f5cc6a299e7fd3b8fab494480d7 (patch) | |
| tree | a1c0ab173723c47adf23d7dc5c1894185052cc39 /Views/Settings/Settings.xaml.cs | |
| download | avalar-0f98b398520a3f5cc6a299e7fd3b8fab494480d7.tar.gz avalar-0f98b398520a3f5cc6a299e7fd3b8fab494480d7.tar.bz2 avalar-0f98b398520a3f5cc6a299e7fd3b8fab494480d7.zip | |
Initial commit, skeleton project.
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 |
