Initial commit

This commit is contained in:
watsonb8
2019-05-16 18:07:36 -04:00
commit 4f8b6f49fa
18 changed files with 739 additions and 0 deletions

24
Aurora.gtk/Program.cs Normal file
View File

@@ -0,0 +1,24 @@
using System;
using Xamarin.Forms;
using Xamarin.Forms.Platform.GTK;
namespace Aurora.gtk
{
class MainClass
{
[STAThread]
public static void Main(string[] args)
{
Gtk.Application.Init();
Forms.Init();
var app = new App();
var window = new FormsWindow();
window.LoadApplication(app);
window.SetApplicationTitle("Aurora");
window.Show();
Gtk.Application.Run();
}
}
}