First page Back Continue Last page Graphics
“Hola, mundo” en gtk-sharp
using System;
using Gtk;
class Principal {
public static void Main ()
{
Window ventana;
Label text;
Application.Init ();
ventana = new Window ("Saludo");
text = new Label ("Hola, mundo");
ventana.Add (text);
ventana.ShowAll ();
Application.Run ();
}
}
Notes: