summaryrefslogtreecommitdiff
path: root/quellcode/demo1/Controller/Main.cs
diff options
context:
space:
mode:
Diffstat (limited to 'quellcode/demo1/Controller/Main.cs')
-rwxr-xr-xquellcode/demo1/Controller/Main.cs17
1 files changed, 17 insertions, 0 deletions
diff --git a/quellcode/demo1/Controller/Main.cs b/quellcode/demo1/Controller/Main.cs
new file mode 100755
index 0000000..b07e1ed
--- /dev/null
+++ b/quellcode/demo1/Controller/Main.cs
@@ -0,0 +1,17 @@
+// project created on 12/15/2006 at 11:25 AM
+using System;
+using Gtk;
+
+namespace Controller
+{
+ class MainClass
+ {
+ public static void Main (string[] args)
+ {
+ Application.Init ();
+ MainWindow win = new MainWindow ();
+ win.Show ();
+ Application.Run ();
+ }
+ }
+} \ No newline at end of file