All pastes #341865 Raw Edit

Someone

public text v1 · immutable
#341865 ·published 2007-02-05 22:14 UTC
rendered paste body
// 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 ();
	}
}