summaryrefslogtreecommitdiff
path: root/Views/Settings
diff options
context:
space:
mode:
Diffstat (limited to 'Views/Settings')
-rw-r--r--Views/Settings/Settings.xaml9
-rw-r--r--Views/Settings/Settings.xaml.cs18
2 files changed, 27 insertions, 0 deletions
diff --git a/Views/Settings/Settings.xaml b/Views/Settings/Settings.xaml
new file mode 100644
index 0000000..dfc8602
--- /dev/null
+++ b/Views/Settings/Settings.xaml
@@ -0,0 +1,9 @@
+<UserControl xmlns="https://github.com/avaloniaui"
+ xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
+ xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
+ xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
+ mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
+ x:Class="Avalar.Views.Settings.Settings"
+ MinWidth="400">
+ Welcome to Avalonia!
+</UserControl>
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