Files
mpv.net/mpv.net/WPF/AboutWindow.xaml.cs
Frank Skare 5c93bc00f7 -
2019-05-25 03:09:15 +02:00

18 lines
508 B
C#

using System.Windows;
using System.Windows.Input;
namespace mpvnet
{
public partial class AboutWindow : Window
{
public AboutWindow()
{
InitializeComponent();
Version.Text = $"Version {System.Windows.Forms.Application.ProductVersion}";
Foreground = WPF.WPF.ThemeBrush;
}
protected override void OnPreviewKeyDown(KeyEventArgs e) => Close();
protected override void OnMouseDown(MouseButtonEventArgs e) => Close();
}
}