mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-12 21:38:38 +00:00
Wizard - Skip layout and surface steps when no devices are found Workshop - Fixed crash when opening library
14 lines
304 B
C#
14 lines
304 B
C#
using Avalonia;
|
|
using Avalonia.Controls;
|
|
using Avalonia.Markup.Xaml;
|
|
using Avalonia.ReactiveUI;
|
|
|
|
namespace Artemis.UI.Screens.StartupWizard.Steps;
|
|
|
|
public partial class LayoutsStepView : ReactiveUserControl<LayoutsStepViewModel>
|
|
{
|
|
public LayoutsStepView()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
} |