RosettaCodeData/Task/Hello-world-Graphical/C-sharp/hello-world-graphical-2.cs

13 lines
289 B
C#

using Gtk;
using GtkSharp;
public class GoodbyeWorld {
public static void Main(string[] args) {
Gtk.Window window = new Gtk.Window();
window.Title = "Goodbye, World";
window.DeleteEvent += delegate { Application.Quit(); };
window.ShowAll();
Application.Run();
}
}