#include #include "stockmanager.h" int main(int argc, char *argv[]) { QApplication app(argc, argv); StockManager w; w.setGeometry(0, 0, 1024, 600); // position en haut Ă  gauche, taille 1024x600 w.setWindowFlags(Qt::FramelessWindowHint); // pas de barre de fenĂȘtre w.setFixedSize(1024, 600); // taille non redimensionnable w.show(); return app.exec(); }