mirror of https://github.com/HandBrake/HandBrake
88 lines
2.9 KiB
C#
88 lines
2.9 KiB
C#
// --------------------------------------------------------------------------------------------------------------------
|
|
// <copyright file="SourceSelection.xaml.cs" company="HandBrake Project (http://handbrake.fr)">
|
|
// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License.
|
|
// </copyright>
|
|
// <summary>
|
|
// Interaction logic for SourceSelection.xaml
|
|
// </summary>
|
|
// --------------------------------------------------------------------------------------------------------------------
|
|
|
|
namespace HandBrakeWPF.Controls
|
|
{
|
|
using System.Diagnostics;
|
|
using System.Windows.Controls;
|
|
using System.Windows.Navigation;
|
|
|
|
using HandBrakeWPF.ViewModels;
|
|
|
|
/// <summary>
|
|
/// Interaction logic for SourceSelection.xaml
|
|
/// </summary>
|
|
public partial class SourceSelection : UserControl
|
|
{
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="SourceSelection"/> class.
|
|
/// </summary>
|
|
public SourceSelection()
|
|
{
|
|
this.InitializeComponent();
|
|
}
|
|
|
|
/// <summary>
|
|
/// The about request navigate.
|
|
/// </summary>
|
|
/// <param name="sender">
|
|
/// The sender.
|
|
/// </param>
|
|
/// <param name="e">
|
|
/// The e.
|
|
/// </param>
|
|
private void AboutHandBrake_OnRequestNavigate(object sender, RequestNavigateEventArgs e)
|
|
{
|
|
MainViewModel vm = this.DataContext as MainViewModel;
|
|
vm.OpenAboutApplication();
|
|
}
|
|
|
|
/// <summary>
|
|
/// The open options request navigate.
|
|
/// </summary>
|
|
/// <param name="sender">
|
|
/// The sender.
|
|
/// </param>
|
|
/// <param name="e">
|
|
/// The e.
|
|
/// </param>
|
|
private void OpenOptions_OnRequestNavigate(object sender, RequestNavigateEventArgs e)
|
|
{
|
|
MainViewModel vm = this.DataContext as MainViewModel;
|
|
vm.OpenOptionsWindow();
|
|
}
|
|
|
|
/// <summary>
|
|
/// The help_ on request navigate.
|
|
/// </summary>
|
|
/// <param name="sender">
|
|
/// The sender.
|
|
/// </param>
|
|
/// <param name="e">
|
|
/// The e.
|
|
/// </param>
|
|
private void Help_OnRequestNavigate(object sender, RequestNavigateEventArgs e)
|
|
{
|
|
Process.Start("explorer.exe", "https://handbrake.fr/docs");
|
|
}
|
|
|
|
private void UpdateAvailable_OnRequestNavigate(object sender, RequestNavigateEventArgs e)
|
|
{
|
|
MainViewModel vm = this.DataContext as MainViewModel;
|
|
vm.CheckForUpdates();
|
|
}
|
|
|
|
private void NightlyAvailable_OnRequestNavigate(object sender, RequestNavigateEventArgs e)
|
|
{
|
|
MainViewModel vm = this.DataContext as MainViewModel;
|
|
vm.NightlyUpdate();
|
|
}
|
|
}
|
|
}
|