This commit is contained in:
2020-02-25 22:39:40 +01:00
commit de3da55bac
16 changed files with 436 additions and 0 deletions

23
EstusShots.Gtk/Program.cs Normal file
View File

@@ -0,0 +1,23 @@
using System;
using Gtk;
namespace EstusShots.Gtk
{
class Program
{
[STAThread]
public static void Main(string[] args)
{
Application.Init();
var app = new Application("EstusShots.Gtk", GLib.ApplicationFlags.None);
app.Register(GLib.Cancellable.Current);
var win = new MainWindow();
app.AddWindow(win);
win.Show();
Application.Run();
}
}
}