Exemple #1
0
Fichier : t1.cs Projet : KDE/qyoto
 public static int Main(String[] args)
 {
     QApplication app = new QApplication(args);
     QPushButton hello = new QPushButton("Hello world!");
     QLabel label = new QLabel(hello);
     hello.Resize(100, 30);
     hello.Show();
     return QApplication.Exec();
 }
Exemple #2
0
Fichier : p1.cs Projet : KDE/kimono
    public static int Main(String[] args)
    {
        QApplication a = new QApplication(args);
        QMainWindow w = new QMainWindow();
        QPushButton hello = new QPushButton("Hello world!", null);
        hello.Resize(100, 30);
        QObject.Connect(hello, SIGNAL("clicked()"), a, SLOT("quit()"));

        hello.Show();
        return QApplication.Exec();
    }
Exemple #3
0
Fichier : t2.cs Projet : KDE/qyoto
    public static int Main(String[] args)
    {
        QApplication app = new QApplication(args);

        QPushButton quit = new QPushButton( "Quit" );
        quit.Resize( 75, 30 );
        quit.Font = new QFont( "Times", 18, (int) QFont.Weight.Bold );

        QObject.Connect( quit, SIGNAL("clicked()"), app, SLOT("quit()") );

        quit.Show();
        return QApplication.Exec();
    }