Qt
De WikiDeveloppez.
(Différences entre les versions)
(→Qt Quick) |
(→Programmes simples avec Qt) |
||
hello.show() | hello.show() | ||
app.exec_()</tt> | app.exec_()</tt> | ||
+ | |||
+ | === En C# avec Qyoto === | ||
+ | |||
+ | <tt>using System; | ||
+ | using Qyoto; | ||
+ | |||
+ | public class HelloWorld | ||
+ | { | ||
+ | public static int Main(String[] args) { | ||
+ | QApplication app = new QApplication(args); | ||
+ | QPushButton hello = new QPushButton("Hello world!"); | ||
+ | hello.Show(); | ||
+ | return QApplication.Exec(); | ||
+ | } | ||
+ | }</tt> | ||
== Qt SDK == | == Qt SDK == |