64 lines
3.4 KiB
Plaintext
64 lines
3.4 KiB
Plaintext
|
|
<local:WizardPageBase x:Class="EngineeringSync.Setup.Views.Pages.WelcomePage"
|
|||
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|||
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|||
|
|
xmlns:local="clr-namespace:EngineeringSync.Setup.Views.Pages"
|
|||
|
|
Background="White">
|
|||
|
|
<Grid Margin="40,32,40,24">
|
|||
|
|
<Grid.RowDefinitions>
|
|||
|
|
<RowDefinition Height="Auto"/>
|
|||
|
|
<RowDefinition Height="Auto"/>
|
|||
|
|
<RowDefinition Height="*"/>
|
|||
|
|
<RowDefinition Height="Auto"/>
|
|||
|
|
</Grid.RowDefinitions>
|
|||
|
|
|
|||
|
|
<!-- Großes Begrüßungs-Icon -->
|
|||
|
|
<Border Grid.Row="0" Width="64" Height="64" CornerRadius="16"
|
|||
|
|
HorizontalAlignment="Left" Margin="0,0,0,24">
|
|||
|
|
<Border.Background>
|
|||
|
|
<LinearGradientBrush StartPoint="0,0" EndPoint="1,1">
|
|||
|
|
<GradientStop Color="#0078D4" Offset="0"/>
|
|||
|
|
<GradientStop Color="#00B4FF" Offset="1"/>
|
|||
|
|
</LinearGradientBrush>
|
|||
|
|
</Border.Background>
|
|||
|
|
<TextBlock Text="" FontFamily="Segoe MDL2 Assets" FontSize="32"
|
|||
|
|
Foreground="White" HorizontalAlignment="Center" VerticalAlignment="Center"/>
|
|||
|
|
</Border>
|
|||
|
|
|
|||
|
|
<!-- Überschrift -->
|
|||
|
|
<StackPanel Grid.Row="1" Margin="0,0,0,20">
|
|||
|
|
<TextBlock Text="Willkommen bei EngineeringSync"
|
|||
|
|
Style="{StaticResource PageTitleStyle}"/>
|
|||
|
|
<TextBlock Style="{StaticResource PageSubtitleStyle}"
|
|||
|
|
Text="Dieser Assistent führt Sie durch die Installation und Erstkonfiguration von EngineeringSync – dem intelligenten Bindeglied zwischen Ihrem Engineering- und Simulationsumfeld."/>
|
|||
|
|
</StackPanel>
|
|||
|
|
|
|||
|
|
<!-- Feature-Liste -->
|
|||
|
|
<StackPanel Grid.Row="2" VerticalAlignment="Top">
|
|||
|
|
<TextBlock Text="Was wird installiert:"
|
|||
|
|
FontFamily="Segoe UI" FontSize="12" FontWeight="SemiBold"
|
|||
|
|
Foreground="#5F5F5F" Margin="0,0,0,12"/>
|
|||
|
|
|
|||
|
|
<local:FeatureRow Icon="" Title="EngineeringSync Service"
|
|||
|
|
Description="Windows-Dienst der Ihr Engineering-Verzeichnis überwacht und Änderungen protokolliert"/>
|
|||
|
|
<local:FeatureRow Icon="" Title="System Tray App"
|
|||
|
|
Description="Benachrichtigt Sie sofort über neue Änderungen und ermöglicht kontrollierten Sync"/>
|
|||
|
|
<local:FeatureRow Icon="" Title="Konfigurations-Wizard"
|
|||
|
|
Description="Verwalten Sie Projekte und Sync-Pfade bequem per grafischer Oberfläche"/>
|
|||
|
|
</StackPanel>
|
|||
|
|
|
|||
|
|
<!-- System-Check -->
|
|||
|
|
<Border Grid.Row="3" Background="#F0F7FF" CornerRadius="8" Padding="14,10" Margin="0,16,0,0">
|
|||
|
|
<StackPanel Orientation="Horizontal">
|
|||
|
|
<TextBlock Text="" FontFamily="Segoe MDL2 Assets" FontSize="14"
|
|||
|
|
Foreground="#0078D4" VerticalAlignment="Center" Margin="0,0,10,0"/>
|
|||
|
|
<TextBlock FontFamily="Segoe UI" FontSize="12" Foreground="#5F5F5F"
|
|||
|
|
VerticalAlignment="Center" TextWrapping="Wrap">
|
|||
|
|
<Run Text="Klicken Sie auf " FontWeight="Regular"/>
|
|||
|
|
<Run Text="Weiter" FontWeight="SemiBold"/>
|
|||
|
|
<Run Text=" um die Installation zu beginnen." FontWeight="Regular"/>
|
|||
|
|
</TextBlock>
|
|||
|
|
</StackPanel>
|
|||
|
|
</Border>
|
|||
|
|
</Grid>
|
|||
|
|
</local:WizardPageBase>
|