1
0
mirror of https://github.com/Artemis-RGB/Artemis synced 2025-12-13 05:48:35 +00:00
Artemis/src/Avalonia/Artemis.UI/Screens/Sidebar/SidebarView.axaml.cs
Robert 0c3f84cbeb Sidebar - Moved VMs and views
Sidebar - Implemented profile selection
Windows - Fix designer breaking due to the input provider
2021-12-09 23:32:59 +01:00

18 lines
371 B
C#

using Avalonia.Markup.Xaml;
using Avalonia.ReactiveUI;
namespace Artemis.UI.Screens.Sidebar
{
public class SidebarView : ReactiveUserControl<SidebarViewModel>
{
public SidebarView()
{
InitializeComponent();
}
private void InitializeComponent()
{
AvaloniaXamlLoader.Load(this);
}
}
}