mirror of https://github.com/HandBrake/HandBrake
35 lines
1.2 KiB
C#
35 lines
1.2 KiB
C#
// --------------------------------------------------------------------------------------------------------------------
|
|
// <copyright file="AudioDefaultsView.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 AudioDefaultsView.xaml
|
|
// </summary>
|
|
// --------------------------------------------------------------------------------------------------------------------
|
|
|
|
namespace HandBrakeWPF.Views
|
|
{
|
|
using System;
|
|
|
|
using HandBrakeWPF.Helpers;
|
|
using System.Windows;
|
|
using System.Windows.Input;
|
|
|
|
using HandBrakeWPF.Commands;
|
|
|
|
public partial class AudioDefaultsView : Window
|
|
{
|
|
public AudioDefaultsView()
|
|
{
|
|
this.InitializeComponent();
|
|
this.InputBindings.Add(new InputBinding(new CloseWindowCommand(this), new KeyGesture(Key.W, ModifierKeys.Control))); // Close Window
|
|
}
|
|
|
|
protected override void OnSourceInitialized(EventArgs e)
|
|
{
|
|
base.OnSourceInitialized(e);
|
|
WindowHelper.SetDarkMode(this);
|
|
}
|
|
}
|
|
}
|