2019-12-26 23:01:54 -05:00
|
|
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
2018-06-07 18:49:50 -04:00
|
|
|
|
|
|
|
|
|
|
using System.Windows;
|
2019-01-10 17:26:53 -05:00
|
|
|
|
|
|
|
|
|
|
using nDisplayLauncher.Cluster;
|
|
|
|
|
|
using nDisplayLauncher.Cluster.Events;
|
|
|
|
|
|
|
2018-06-07 18:49:50 -04:00
|
|
|
|
|
|
|
|
|
|
namespace nDisplayLauncher
|
|
|
|
|
|
{
|
|
|
|
|
|
public partial class MainWindow : Window
|
|
|
|
|
|
{
|
2019-01-10 17:26:53 -05:00
|
|
|
|
public Launcher TheLauncher;
|
2018-06-07 18:49:50 -04:00
|
|
|
|
|
|
|
|
|
|
public MainWindow()
|
|
|
|
|
|
{
|
|
|
|
|
|
InitializeComponent();
|
|
|
|
|
|
|
2019-01-10 17:26:53 -05:00
|
|
|
|
TheLauncher = new Launcher();
|
2018-06-07 18:49:50 -04:00
|
|
|
|
|
2019-01-10 17:26:53 -05:00
|
|
|
|
InitializeAppLogger();
|
|
|
|
|
|
InitializeLauncher();
|
|
|
|
|
|
InitializeEvents();
|
|
|
|
|
|
InitializeLog();
|
2018-06-07 18:49:50 -04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
private void Window_Loaded(object sender, RoutedEventArgs e)
|
|
|
|
|
|
{
|
2019-10-16 07:58:36 -04:00
|
|
|
|
this.Title = "nDisplay Launcher";
|
2018-06-07 18:49:50 -04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
private void Exit(object sender, RoutedEventArgs e)
|
|
|
|
|
|
{
|
|
|
|
|
|
this.Close();
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|