Label (Vala) Tiffany Antopolski tiffany.antopolski@gmail.com 2012 A widget which displays text Rafael Ferreira rafael.f.f1@gmail.com 2013 Label

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

In this sample we used the following:

Gtk.Application

Gtk.ApplicationWindow

Gtk.Label