|
/****************************************************************
**
** Qt教程一 - 2
**
****************************************************************/
#include <qapplication.h>
#include <qpushbutton.h>
int main( int argc, char **argv )
{
QApplication a( argc, argv );
QPushButton hello( "Hello world!\n为人民服务!", 0 );
hello.resize( 100, 30 );
a.setMainWidget( &hello );
hello.show();
return a.exec();
}
以上程序编译没问题,可运行结果却显示得像天书。
特请教高手,先谢过了。在线等待。 |
|