|
我刚学,下面小程序的目的是为了把两个按钮装在一个窗口里,但是不对主,求肋。
#include <qapplication.h>
#include <qpushbutton.h>
int main( int argc, char **argv )
{
QApplication a( argc, argv );
QPushButton hello( "Hello world!", 0 );
QPushButton quit("Quit!",0);
hello.resize( 100, 30 );
quit.resize(100,30);
a.setMainWideget(&hello);
a.setMainWideget(&quit);
hello.show();
quit.show();
return a.exec();
} |
|