23 lines
520 B
C#
Raw Permalink Normal View History

2021-03-30 20:54:53 +02:00
using System;
2020-09-10 15:05:08 +02:00
using Xamarin.Forms;
using Xamarin.Forms.Platform.GTK;
2021-03-30 20:54:53 +02:00
namespace Borepin.GTK
2020-09-10 15:05:08 +02:00
{
class MainClass
{
[STAThread]
public static void Main(string[] args)
{
Gtk.Application.Init();
Forms.Init();
2022-01-03 21:13:03 +00:00
FormsWindow window = new FormsWindow();
2021-03-30 20:54:53 +02:00
window.LoadApplication(new App(new PlatformInitializer()));
window.SetApplicationTitle("FabAccess");
2020-09-10 15:05:08 +02:00
window.Show();
Gtk.Application.Run();
}
}
}