mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
Sidebar - Implemented profile selection Windows - Fix designer breaking due to the input provider
18 lines
371 B
C#
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);
|
|
}
|
|
}
|
|
} |