2021-09-23 17:30:38 +12:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Configuration;
|
|
|
|
|
using System.Data;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using System.Windows;
|
|
|
|
|
|
|
|
|
|
namespace Audio_Router_WPF
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Interaction logic for App.xaml
|
|
|
|
|
/// </summary>
|
|
|
|
|
public partial class App : Application
|
|
|
|
|
{
|
2021-09-23 19:21:08 +12:00
|
|
|
|
public static App appRef;
|
|
|
|
|
// The list of audio graphs
|
|
|
|
|
public List<AudioGraphConnection> audioGraphConnections;
|
|
|
|
|
public static Windows.System.Display.DisplayRequest displayRequest = new Windows.System.Display.DisplayRequest();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public App()
|
|
|
|
|
{
|
|
|
|
|
appRef = this;
|
|
|
|
|
audioGraphConnections = new List<AudioGraphConnection>();
|
|
|
|
|
}
|
2021-09-23 17:30:38 +12:00
|
|
|
|
}
|
|
|
|
|
}
|