mirror of
https://github.com/Artemis-RGB/Artemis
synced 2026-03-24 18:28:49 +00:00
22 lines
1.3 KiB
XML
22 lines
1.3 KiB
XML
<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"
|
|
xmlns:steps="clr-namespace:Artemis.UI.Screens.Workshop.SubmissionWizard.Steps"
|
|
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
|
|
x:Class="Artemis.UI.Screens.StartupWizard.Steps.WelcomeStepView"
|
|
x:DataType="steps:WelcomeStepViewModel">
|
|
<StackPanel Margin="0 50 0 0">
|
|
<TextBlock Classes="h4" TextAlignment="Center">Welcome to the Artemis startup wizard!</TextBlock>
|
|
|
|
<TextBlock TextWrapping="Wrap" TextAlignment="Center">
|
|
In this wizard we'll walk you through the initial configuration of Artemis.
|
|
</TextBlock>
|
|
<TextBlock TextWrapping="Wrap" TextAlignment="Center">
|
|
Before you can start you need to tell Artemis which devices you want to use and where they are placed on your desk.
|
|
</TextBlock>
|
|
<TextBlock Classes="subtitle" TextWrapping="Wrap" Margin="0 15 0 0" TextAlignment="Center">
|
|
PS: You can also skip the wizard and set things up yourself.
|
|
</TextBlock>
|
|
</StackPanel>
|
|
</UserControl> |