Files
PWAPP/PWAPPv2/App.xaml.cs
Matthew Burke 1b65e9bb83 Lots of updates
2023-07-26 22:26:54 -04:00

26 lines
533 B
C#

using System;
using System.Collections.Generic;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Threading.Tasks;
using System.Windows;
namespace PWAPPv2
{
/// <summary>
/// Interaction logic for App.xaml
/// </summary>
public partial class App : Application
{
public static string[] Args;
void app_Startup(object sender, StartupEventArgs e)
{
if(e.Args.Length > 0)
{
Args = e.Args;
}
}
}
}