diff --git a/mpv.net/Windows/AboutWindow.xaml b/mpv.net/Windows/AboutWindow.xaml index 8dc929f..ed640ec 100644 --- a/mpv.net/Windows/AboutWindow.xaml +++ b/mpv.net/Windows/AboutWindow.xaml @@ -4,10 +4,14 @@ xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" mc:Ignorable="d" - Title="About mpv.net" Height="200" Width="500" FontSize="20" - ShowInTaskbar="False" WindowStartupLocation="CenterOwner" ResizeMode="NoResize" - Foreground="#FFA0842A"> + Title="About mpv.net" Height="230" Width="420" FontSize="16" ShowInTaskbar="False" + WindowStartupLocation="CenterOwner" ResizeMode="NoResize"> - + + mpv.net + Copyright (c) 2017-2019 Frank Skare (stax76) + + MIT License + \ No newline at end of file diff --git a/mpv.net/Windows/AboutWindow.xaml.cs b/mpv.net/Windows/AboutWindow.xaml.cs index 0736d2b..bb3a264 100644 --- a/mpv.net/Windows/AboutWindow.xaml.cs +++ b/mpv.net/Windows/AboutWindow.xaml.cs @@ -1,4 +1,5 @@ using System.Windows; +using System.Windows.Input; namespace mpvnet { @@ -7,7 +8,8 @@ namespace mpvnet public AboutWindow() { InitializeComponent(); - TextBlock.Text = $"mpv.net\nVersion {System.Windows.Forms.Application.ProductVersion}\nCopyright (c) 2017-2019 Frank Skare (stax76)\nMIT License"; + Version.Text = $"Version {System.Windows.Forms.Application.ProductVersion}"; + Foreground = WPF.WPF.ThemeBrush; } } } \ No newline at end of file