一 参照手册例子建立helloword.cpp ------------------------------ #include #include int main(int argc,char **argv) { QApplication a(argc,argv); QPushButton hello("Hello world!",0); hello.resize(100,30); a.setMainWidget(&hello); hello.show(); int result=a.exec(); return result; } ----------- ..
[
查看全文]