说明: 超简单QT程序 #include #include #include int main(int argc, char *argv[]) { QApplication a(argc, argv); // Dialog w; // w.show(); QDialog dg; QPushButton bt("按键",&dg;); // bt.minimumSize(); bt.move(QPoint(10,20)); dg.show(); return a.exec(); }
<qq_41443686> 上传 | 大小:4kb