mirror of
https://gitlab.com/fabinfra/fabaccess/borepin.git
synced 2025-03-12 23:01:52 +01:00
23 lines
512 B
C#
23 lines
512 B
C#
using System;
|
|
using Xamarin.Forms;
|
|
using Xamarin.Forms.Platform.GTK;
|
|
|
|
namespace Borepin.GTK
|
|
{
|
|
class MainClass
|
|
{
|
|
[STAThread]
|
|
public static void Main(string[] args)
|
|
{
|
|
Gtk.Application.Init();
|
|
Forms.Init();
|
|
|
|
var window = new FormsWindow();
|
|
window.LoadApplication(new App(new PlatformInitializer()));
|
|
window.SetApplicationTitle("FabAccess");
|
|
window.Show();
|
|
|
|
Gtk.Application.Run();
|
|
}
|
|
}
|
|
} |