Add editor skeleton.

This commit is contained in:
2018-07-30 20:55:43 +01:00
parent 6ffcc1183c
commit 69d3991923
23 changed files with 367 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
using System;
using Eto.Forms;
using Eto.Drawing;
namespace CICMMetadataEditor.Desktop
{
class Program
{
[STAThread]
static void Main(string[] args)
{
new Application(Eto.Platform.Detect).Run(new MainForm());
}
}
}