25 lines
511 B
C#
25 lines
511 B
C#
|
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();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|