List soundcards
[mirrors/Programs.git] / misc / multiplatform-ui / hello.cs
CommitLineData
21c4e167
H
1/*
2pracuje se na tom...
3
4compile with
5mcs hello.cs -pkg:gtk-sharp-2.0
6mono hello.exe
7*/
8
9using Gtk;
10using System;
11
12class Hello {
13
14 static void Main()
15 {
16 Application.Init ();
17
18 GTKBuilder builder = new GtkBuilder();
19
20 builder->add_from_file("hello.ui");
21 builder->connect_signals();
22
23 Window window = new Window ("helloworld");
24 window.Show();
25
26 Application.Run ();
27
28 }
29}
30
This page took 0.16073 seconds and 4 git commands to generate.