You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 5 Next »



p, li { white-space: pre-wrap; }

TEMPLATE      = app

SOURCES       = main.cpp

FORMS         = gotocelldialog.ui


Automaattisesti generoitu xml tiedosto dialogista


p, li { white-space: pre-wrap; }

#include <QApplication>

#include <QDialog>



#include "ui_gotocelldialog.h"



int main(int argc, char *argv[])

{

    QApplication app(argc, argv);



    Ui::GoToCellDialog ui;

    QDialog *dialog = new QDialog;

    ui.setupUi(dialog);

    dialog->show();



    return app.exec();

}



  • No labels
You must log in to comment.