ApplicationWindow (Vala) Tiffany Antopolski tiffany.antopolski@gmail.com 2012 GtkApplication을 지원하는 GtkWindow 하위 클래스 조성호 shcho@gnome.org 2017 ApplicationWindow

메뉴를 지원하는 간단한 GtkApplication 창입니다.

/* This is the application. */ public class MyApplication : Gtk.Application { /* Override the 'activate' signal of GLib.Application. */ protected override void activate () { /* Create the window of this application and show it. */ var window = new Gtk.ApplicationWindow (this); window.title = "Welcome to GNOME"; window.show (); } } /* main creates and runs the application. */ public int main (string[] args) { return new MyApplication ().run (args); }

이 예제는 다음 참고자료가 필요합니다:

Gtk.Application

Gtk.ApplicationWindow