This commit is contained in:
2020-06-17 21:03:51 +02:00
commit 2997ab7c7e
20 changed files with 466 additions and 0 deletions

14
Mino.Wpf/Program.cs Normal file
View File

@@ -0,0 +1,14 @@
using System;
using Eto.Forms;
namespace Mino.Wpf
{
class MainClass
{
[STAThread]
public static void Main(string[] args)
{
new Application(Eto.Platforms.Wpf).Run(new MainForm());
}
}
}