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