FirstTry_HelloWorld】的更多相关文章

#include <qapplication.h> #include <qpushbutton.h> int main( int argc, char **argv ) { QApplication a( argc, argv ); QPushButton hellobtn( ); hellobtn.resize(, ); a.setMainWidget( &hellobtn ); hellobtn.show(); return a.exec(); } http://i.c…