summaryrefslogtreecommitdiffstats
path: root/qtsharp/src/examples/tutorials/t3.cs
blob: 806c5184ae74ec3f264da5061bf2cc4d9689f31f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// Qt# tutorial 3
// Based on the Qt tutorial
// Implemented by Marcus Urban

using System;
using Qt;


public class Example {

	public static int Main (String[] args)
	{
		TTQApplication a = new TTQApplication (args);
		
		TTQVBox box = new TTQVBox ();
		box.Resize (200, 120);
		
		TTQPushButton quit = new TTQPushButton ("Quit", box);
		quit.SetFont (new TTQFont ("Times", 18, TTQFont.Weight.Bold));
		// In C++, TTQFont::Bold is sufficient
		
		TTQObject.Connect ( quit, QtSupport.TQT_SIGNAL ("clicked()"), a, QtSupport.TQT_SLOT ("Quit()") );
		// TQT_SIGNAL and TQT_SLOT are static functions of QtSupport
				
		a.SetMainWidget (box);
		box.Show ();
		return a.Exec ();
	}
}