... I need peace

This commit is contained in:
2018-03-09 04:25:52 +01:00
parent 1efd8bc36d
commit 2be22d788b
47 changed files with 2044 additions and 11989 deletions

23
yaxwtui.Wpf/Program.cs Normal file
View File

@ -0,0 +1,23 @@
using System;
using Xwt;
namespace yaxwtui.Wpf
{
public class Program
{
[STAThread]
public static void Main (string[] args)
{
Application.Initialize (ToolkitType.Wpf);
MainWindow w = new MainWindow ();
w.Show ();
Application.Run ();
w.Dispose ();
Application.Dispose ();
}
}
}