25 lines
1.3 KiB
XML
25 lines
1.3 KiB
XML
<Window x:Class="PulseDock.App.Views.AboutWindow"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
Title="Über PulseDock" Height="300" Width="400"
|
|
WindowStartupLocation="CenterOwner" ResizeMode="NoResize"
|
|
Background="#14171E" Foreground="White">
|
|
|
|
<Grid Margin="20">
|
|
<StackPanel>
|
|
<TextBlock Text="{Binding AppName}" FontSize="22" FontWeight="Bold" Foreground="#8A2BE2"/>
|
|
<TextBlock Text="{Binding Version}" FontSize="12" Foreground="#AAB4C3" Margin="0,2,0,12"/>
|
|
<TextBlock Text="{Binding Description}" FontSize="13" TextWrapping="Wrap" Margin="0,0,0,16"/>
|
|
|
|
<TextBlock Text="Verwendete Bibliotheken:" FontWeight="SemiBold" Margin="0,4,0,2"/>
|
|
<TextBlock Text="{Binding Libraries}" Foreground="#AAB4C3" FontSize="11" TextWrapping="Wrap"/>
|
|
|
|
<TextBlock Text="Lizenz:" FontWeight="SemiBold" Margin="0,12,0,2"/>
|
|
<TextBlock Text="{Binding LicenseInfo}" Foreground="#AAB4C3" FontSize="11"/>
|
|
|
|
<Button Content="Schließen" Click="Close_Click" HorizontalAlignment="Right" Margin="0,20,0,0"
|
|
Background="#8A2BE2" Foreground="White" Padding="16,6" BorderThickness="0"/>
|
|
</StackPanel>
|
|
</Grid>
|
|
</Window>
|