GIT.Harvie.CZ
/
mirrors
/
Programs.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
2893ca752c13a5623a64a62e0b592f6995140f58
[mirrors/Programs.git]
/
misc
/
multiplatform-ui
/
hello.cs
1
/*
2
pracuje se na tom...
3
4
compile with
5
mcs hello.cs -pkg:gtk-sharp-2.0
6
mono hello.exe
7
*/
8
9
using Gtk;
10
using System;
11
12
class 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
1.230654 seconds
and
5
git commands to generate.