// -------------------------------------------------------------------------------------------------------------------- // // This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License. // // // Interaction logic for AboutView.xaml // // -------------------------------------------------------------------------------------------------------------------- namespace HandBrakeWPF.Views { using System.Diagnostics; using System.Windows.Controls; using System.Windows.Navigation; /// /// Interaction logic for AboutView.xaml /// public partial class AboutView : UserControl { /// /// Initializes a new instance of the class. /// public AboutView() { InitializeComponent(); } /// /// The handbrake website_ on request navigate. /// /// /// The sender. /// /// /// The e. /// private void HandbrakeWebsite_OnRequestNavigate(object sender, RequestNavigateEventArgs e) { Process.Start("https://handbrake.fr"); } } }