28 lines
1.3 KiB
XML
28 lines
1.3 KiB
XML
<Window x:Class="mpvnet.AboutWindow"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
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:UI="clr-namespace:UI"
|
|
mc:Ignorable="d"
|
|
|
|
Title="About mpv.net"
|
|
Height="230"
|
|
Width="400"
|
|
FontSize="16"
|
|
ShowInTaskbar="False"
|
|
WindowStartupLocation="CenterOwner"
|
|
ResizeMode="NoResize"
|
|
Foreground="{x:Static UI:Theme.Foreground}"
|
|
Background="{x:Static UI:Theme.Background}">
|
|
|
|
<Grid>
|
|
<StackPanel HorizontalAlignment="Center" VerticalAlignment="Center">
|
|
<TextBlock FontSize="48" HorizontalAlignment="Center" Margin="0,0,0,10">mpv.net</TextBlock>
|
|
<TextBlock HorizontalAlignment="Center">Copyright (C) 2017-2020 Frank Skare (stax76)</TextBlock>
|
|
<TextBlock Name="Version" HorizontalAlignment="Center" />
|
|
<TextBlock Name="mpvVersion" HorizontalAlignment="Center" />
|
|
<TextBlock HorizontalAlignment="Center" Margin="0,0,0,20">MIT License</TextBlock>
|
|
</StackPanel>
|
|
</Grid>
|
|
</Window> |