summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrakeWPF/Views/AboutView.xaml.cs
diff options
context:
space:
mode:
authorsr55 <[email protected]>2016-03-21 20:11:09 +0000
committersr55 <[email protected]>2016-03-21 20:11:55 +0000
commitb6a81f7e4fdde1eba56bde85e0e251cc6475f782 (patch)
treedfc96488cbce431b9b071b6f0536f7278244c8ea /win/CS/HandBrakeWPF/Views/AboutView.xaml.cs
parentaf1a27928318cc377562ec4026a2cbbfad83cbca (diff)
WinGui: Some Cosmetic changes and links added to the GUI.
Diffstat (limited to 'win/CS/HandBrakeWPF/Views/AboutView.xaml.cs')
-rw-r--r--win/CS/HandBrakeWPF/Views/AboutView.xaml.cs16
1 files changed, 16 insertions, 0 deletions
diff --git a/win/CS/HandBrakeWPF/Views/AboutView.xaml.cs b/win/CS/HandBrakeWPF/Views/AboutView.xaml.cs
index 2be3fd009..e2dc357ba 100644
--- a/win/CS/HandBrakeWPF/Views/AboutView.xaml.cs
+++ b/win/CS/HandBrakeWPF/Views/AboutView.xaml.cs
@@ -9,7 +9,9 @@
namespace HandBrakeWPF.Views
{
+ using System.Diagnostics;
using System.Windows.Controls;
+ using System.Windows.Navigation;
/// <summary>
/// Interaction logic for AboutView.xaml
@@ -23,5 +25,19 @@ namespace HandBrakeWPF.Views
{
InitializeComponent();
}
+
+ /// <summary>
+ /// The handbrake website_ on request navigate.
+ /// </summary>
+ /// <param name="sender">
+ /// The sender.
+ /// </param>
+ /// <param name="e">
+ /// The e.
+ /// </param>
+ private void HandbrakeWebsite_OnRequestNavigate(object sender, RequestNavigateEventArgs e)
+ {
+ Process.Start("https://handbrake.fr");
+ }
}
}