fixed runtime xaml load failure

This commit is contained in:
Lavius Motileng
2020-03-10 11:51:19 -07:00
parent fb805de552
commit d28152566d
9 changed files with 8 additions and 192 deletions

View File

@@ -0,0 +1,20 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace SettingsRunner
{
public class Program
{
[System.STAThreadAttribute()]
public static void Main()
{
using (new SettingsUI.App())
{
SettingsRunner.App app = new SettingsRunner.App();
app.InitializeComponent();
app.Run();
}
}
}
}