// --------------------------------------------------------------------------------------------------------------------
//
// 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 CountdownAlertView.xaml
//
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrakeWPF.Views
{
using System;
using HandBrakeWPF.Helpers;
using System.Windows;
///
/// Interaction logic for CountdownAlertView.xaml
///
public partial class CountdownAlertView : Window
{
///
/// Initializes a new instance of the class.
///
public CountdownAlertView()
{
this.InitializeComponent();
}
protected override void OnSourceInitialized(EventArgs e)
{
base.OnSourceInitialized(e);
WindowHelper.SetDarkMode(this);
}
}
}