Someone
public text v1 · immutable// Alp Toker <alp@atoker.com>
// mcs hello.cs -r:nhildon.dll -pkg:gtk-sharp-2.0
// Use the provided nhildon.dll.config
using System;
using Gtk;
using Hildon;
public class HelloHildon
{
public static void Main ()
{
Application.Init ();
Program prog = new Program();
Hildon.Window win = new Hildon.Window();
Button btn = new Button ("Mono/Hildon");
win.Add (btn);
prog.AddWindow(win);
win.ShowAll();
//app.Appview = view;
//app.ShowAll ();
Application.Run ();
}
}