21 lines
457 B
C#
21 lines
457 B
C#
|
using System;
|
||
|
using Gtk;
|
||
|
|
||
|
namespace Buypeeb {
|
||
|
class Program {
|
||
|
[STAThread]
|
||
|
public static void Main(string[] args) {
|
||
|
Application.Init();
|
||
|
|
||
|
var app = new Application("org.buypeeb.buypeeb", GLib.ApplicationFlags.None);
|
||
|
app.Register(GLib.Cancellable.Current);
|
||
|
|
||
|
var win = new MainWindow();
|
||
|
app.AddWindow(win);
|
||
|
|
||
|
win.Show();
|
||
|
Application.Run();
|
||
|
}
|
||
|
}
|
||
|
}
|