Label (Vala) Tiffany Antopolski tiffany.antopolski@gmail.com 2012 Un widget que muestra un texto Daniel Mustieles daniel.mustieles@gmail.com 2011 - 2017 Nicolás Satragno nsatragno@gmail.com 2012 - 2013 Jorge González jorgegonz@svn.gnome.org 2011 Etiqueta

Una etiqueta sencilla

public class MyWindow : Gtk.ApplicationWindow { internal MyWindow (MyApplication app) { Object (application: app, title: "Welcome to GNOME"); var label = new Gtk.Label ("Hello GNOME!"); this.add (label); this.set_default_size (200, 100); this.show_all (); } } public class MyApplication : Gtk.Application { protected override void activate () { new MyWindow (this).show (); } internal MyApplication () { Object (application_id: "org.example.MyApplication"); } } public int main (string[] args) { return new MyApplication ().run (args); }

En este ejemplo se usa lo siguiente:

Gtk.Application

Gtk.ApplicationWindow

Gtk.Label