1
0
Fork 0
mirror of https://github.com/Nioux/AideDeJeu.git synced 2025-10-30 15:06:06 +00:00
AideDeJeu/AideDeJeu/AideDeJeu.GTK/Program.cs
Yan Maniez 60115e7d95 Nugets
2018-10-14 01:01:57 +02:00

30 lines
762 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Xamarin.Forms;
using Xamarin.Forms.Platform.GTK;
namespace AideDeJeu.GTK
{
class MainClass
{
[STAThread]
public static void Main(string[] args)
{
Gtk.Application.Init();
Forms.Init();
SQLitePCL.raw.SetProvider(new SQLitePCL.SQLite3Provider_e_sqlite3());
var app = new App();
var window = new FormsWindow();
window.LoadApplication(app);
window.SetApplicationIcon("battle_axe.png");
window.SetApplicationTitle("Haches & Dés");
window.Show();
Gtk.Application.Run();
}
}
}