Label (Vala) Tiffany Antopolski tiffany.antopolski@gmail.com 2012 A widget which displays text Fran Dieguez frandieguez@gnome.org 2012-2013. Etiqueta

A simple label

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); }

Neste exemplo empregaremos o seguinte:

Gtk.Application

Gtk.ApplicationWindow

Gtk.Label