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 { /// /// Interaction logic for App.xaml /// public partial class App : Application { public static App appRef; // The list of audio graphs public List audioGraphConnections; public static Windows.System.Display.DisplayRequest displayRequest = new Windows.System.Display.DisplayRequest(); public App() { appRef = this; audioGraphConnections = new List(); } } }